I'm using a TableView
to display the contents of an SQLite database. The user clicks one of the checkable buttons and the right table is read through the LocalStorage
API. Thus, the model is always new.
Because the model is always new, the loading of the new table isn't visually attractive (all the entries are shown at once).
My idea was to animate the height of the row when it's added (in a linear way from 0)
Can this be done without reimplementing the rowDelegate
from scratch?