I'm trying to find the row where a value is stock in a QTableView.
I had use
QString select = ui->tableView->model()->index(row,0).data().toString();
to collect the value.
Now i want the exact opposite, like an indexOf()
but i can't find it in the documentation.