Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Forum Updated on Feb 6th

    Unsolved How can I assign the click event handler as I click the row in QT?

    General and Desktop
    qsqltablemodel qtableview qtsql
    2
    2
    967
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • G
      gapry last edited by

      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.

      1 Reply Last reply Reply Quote 0
      • SGaist
        SGaist Lifetime Qt Champion last edited by

        Hi and welcome to devnet,

        You can use the doubleClicked signal for that.

        Interested in AI ? www.idiap.ch
        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

        1 Reply Last reply Reply Quote 0
        • First post
          Last post