How to access the text of Qtablewidget when selection behavior is select rows
I want to access the text of first column of the currently selected row, but I can’t find a way similar to that of QtreeWidget.
- if(ui->treewidget ->currentItem()->text(0)=="Something")
- // then do something
but Qtablewidget doesn’t support such a feature. So what to do.
3 replies
The table widget equivalent of your tree widget code would be something like:
- int row = ui->tableWidget->currentRow();
The current item and current selection are not necessarily related though. If you allow only single selection and have QAbstractItemView::SelectRows set then QTableWidget::selectedItems() should contain only one item with row == 0.
You must log in to post a reply. Not a member yet? Register here!

