How can I assign the click event handler as I click the row in QT?
Unsolved
General and Desktop
-
I know how to bind the QSqlTableModel and QTableView to display all the data in the specific table in the databases. Here, it's my code.
QSqlTableModel model;
QTableView *view1 = createView(&model, QObject::tr("Table Model (View 1)"));
view1->setSelectionBehavior(QAbstractItemView::SelectRows);]If I need to jump the other form as I click the ith-row on the view, how do I assign the click event?
For example, If I click the 3rd rows, I will jump to the user form to show the 3rd user info.
-
Hi and welcome to devnet,
You can use the doubleClicked signal for that.