Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. QML: how to access to model.modelData N element
Forum Updated to NodeBB v4.3 + New Features

QML: how to access to model.modelData N element

Scheduled Pinned Locked Moved QML and Qt Quick
1 Posts 1 Posters 1.9k Views 1 Watching
  • 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.
  • E Offline
    E Offline
    esaba
    wrote on last edited by
    #1

    Hi all,
    I am writing an application in which a c++ plugin exposes a QObjectList as in this example:
    http://doc.qt.nokia.com/latest/qdeclarativemodels.html#qobjectlist-based-model

    ListView {
    width: 100; height: 100
    anchors.fill: parent

     model: myModel
     delegate: Rectangle {
         height: 25
         width: 100
         color: model.modelData.color
         Text { text: name }
     }
    

    }

    I tried to access to an element of the list with the get method:

    model.get(0).color

    as explained in many tutorials, but I received an error

    I tried also with model.get(0).modelData.color, but it is the same.

    How can I access that element?

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved