Qt Forum

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

    Unsolved qml TableView and group of columns

    QML and Qt Quick
    tableview tableviewcolumn
    1
    1
    534
    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.
    • B
      BePie last edited by

      Is there an easy way to have grouped columns?
      Let's say there is a item like that (item in c++ w/o proper interface and property setting, just for example):

      class Item {
          QGeoCoordinate cord;
          QString name;
      }
      

      Now I want to have a TableView with headers like that:

      name |       position        |
           |  lon  |  lat  |  alt  |
      ------------------------------
      pos 1|  21.1 |  21.1 |  21.1 |
      pos 2|  21.1 |  21.1 |  21.1 |
      pos 3|  21.1 |  21.1 |  21.1 |
      

      Is this doable (in a "clean" way) with TableView? I know I can create my own header and create roles for each coordinate part but I don't see how can I create this "group" of headers in a "clean" way (w/o hacking a lot).

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