QAbstractTableModel is only an interface to any kind of a tabular model.Originally Posted by Caius Aérobus
Provided that you have implemented your model properly, it should happen automatically.Originally Posted by Caius Aérobus
void QAbstractItemModel::dataChanged ( const QModelIndex & topLeft, const QModelIndex & bottomRight ) [signal]
This signal is emitted whenever the data in an existing item changes. The affected items are those between topLeft and bottomRight inclusive (of the same parent).
Note that this signal must be emitted explicitly when reimplementing the setData() function.
Bookmarks