QAbstractTableModel::removeRows() implementation
Solved
QML and Qt Quick
-
Hello, I'm working on a qt quick API. I use TableView to display my Data on qml and i want to be able to remove all rows when a button is clicked.
I reimplemented removeRows() function like this:bool CanMessageModel::removeRows(int row, int count, const QModelIndex &index) { beginRemoveRows(QModelIndex(), row, row+count-1); for (int i = 0; i < count; ++i) { m_dataSource->dataItems().remove(QString::number(i)); } endRemoveRows(); return true; }
my data source is a QMap<QString,QString> and i use new TableView item
For now it isn't working. Is my implementation bad or is there anything missing?
Anyone can help pls? -
Hi,
Your code doesn't look like it's removing anything from your data structure.
If it isn't you should explain how.
-
Well, your model is a "wrapper" around your data structure.
Take a look at the Creating New Models in the Model View chapter of QT's documentation.