Qt Forum

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

    List Model How to Append data

    QML and Qt Quick
    1
    2
    666
    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.
    • H
      haris123 last edited by

      I have my list mode

      @ ListModel {
      id: nestedModel
      }@

      and I can append the list model using the code

      @nestedModel.append({
      locationName: qsTr("Location5"),
      collapsed: true,
      folders: [{
      folderName: qsTr("Cam11")
      }, {
      folderName: qsTr("Cam22")
      }, {
      folderName: qsTr("Cam33")
      }, {
      folderName: qsTr("Cam44")
      }]
      })@

      Which works fine.

      But I need to append the inner list only using the same append model, like I have already "Cam11,Cam22,Cam33,Cam44" in my list model, and I have to append "Cam55,Cam66" dynamically.

      How it's possible?

      Any help will be appreciated...

      Thanks
      Haris

      1 Reply Last reply Reply Quote 0
      • H
        haris123 last edited by

        Finally I found the answer "here":http://www.codeproject.com/Articles/632795/QML-TreeModel-and-TreeView
        We can append new data to child list using

        @nestedModel.get(index).folders.append({"folderName": "Cam55})
        nestedModel.get(index).folders.append({"folderName": "Cam66})@
        
        1 Reply Last reply Reply Quote 0
        • First post
          Last post