I have a QTableView
with few records, a single row contains four columns.
I need to get these 4 index values (name, surname, age, username) in order to delete them in SQLite
, so I need these four values to put in the deletion query. I expect to click on an every index of THAT row and get back all the 4 values.
How can I do it?
Thanks
QT - How to get values from a single row in QTableView
7.9k Views Asked by user1336326 At
2
There are 2 best solutions below
1

First you need to handle clicks on your table view. For that purpose you can handle QAbstractItemView::clicked(const QModelIndex &index)
signal and connect it to the appropriate slot. For example:
void GuiClass::onTableCellClicked(const QModelIndex &index)
{
QString cellText = index.data().toString();
[..]
}
I don't see a problem. With
QModelIndex
you can get any data relative to given model index.