I want to delete a selected row from the table when I click on the delete
button.
But I can't find anything regarding deleting rows in the Qt documentation. Any ideas?
See Question&Answers more detail:osI want to delete a selected row from the table when I click on the delete
button.
But I can't find anything regarding deleting rows in the Qt documentation. Any ideas?
See Question&Answers more detail:osYou can use the bool QAbstractItemModel::removeRow(int row, const QModelIndex & parent = QModelIndex())
functionality for this.
Here you can find an example for all this.
Also, here is an inline quote from that documentation:
removeRows()
Used to remove rows and the items of data they contain from all types of model. Implementations must call beginRemoveRows() before inserting new columns into any underlying data structures, and call endRemoveRows() immediately afterwards.
The second part of the task would be to connect the button's clicked signal to the slot executing the removal for you.