I use subclassed QAbstractTableModel for QTableView. The issues are:
1. It's may be funny, I have not found a way to change (all) rows heights.
2. One of the columns is editable. Editing itself works fine:
- I double-click a cell,
- input new text,
- hit Enter.
New information is saved in my container which is used for data() (moreover,
changings are successfully saved to persistent storage - XML-file in my case),
dataChanged(index, index) is emited. But, in spite of emitting the signal, the
view doesn't update just edited cell.
3. How to force a cell editor to use current cell data as starting point for edit?
Bookmarks