QTableView or QSqlTableModel : signal for after insert/delete/update? - SOLVED
-
Ah.. ofcourse.. why you don't see the signal's you want is because.. you need to take a look at the base class (QAbstractItemModel) where we have a lot more signals (row/column added/moved/removed/ etc...) This is always the case. In most classes, a lot of important functions/signals would be in the abstract base class.
See "documentation":http://doc.qt.nokia.com/latest/qabstractitemmodel.html#signals
-