Results 1 to 2 of 2

Thread: Accessing single items from QAbstractListModel in QML

  1. #1
    Join Date
    Dec 2018
    Posts
    2
    Qt products
    Qt5

    Default Accessing single items from QAbstractListModel in QML

    Hello,

    I have a c++ class derived from QAbstractListModel which I use as my Datamodel for QML.
    It has hundrets of objects in it which I want to access directly in QML.
    Using the whole model e.g. in a list ist working.

    Qt Code:
    1. ListView {
    2. width: 100; height: 800
    3.  
    4. model: dataSourceModelObject
    5. delegate: Text { text: name + " " + value}
    6. }
    To copy to clipboard, switch view to plain text mode 

    But I want to access single objects of this ListModel by the ID of the object. Is this possible?

    regards

  2. #2
    Join Date
    Jan 2006
    Location
    Graz, Austria
    Posts
    8,416
    Thanks
    37
    Thanked 1,544 Times in 1,494 Posts
    Qt products
    Qt3 Qt4 Qt5
    Platforms
    Unix/X11 Windows

    Default Re: Accessing single items from QAbstractListModel in QML

    What are these objects that your model is interfacing with?

    Are they accessible from QML, i.e using Q_OBJECT or Q_GADGET for defining properties?

    Cheers,
    _

Similar Threads

  1. Replies: 8
    Last Post: 11th March 2016, 10:56
  2. Replies: 6
    Last Post: 30th December 2010, 12:19
  3. Replies: 3
    Last Post: 19th November 2010, 17:17
  4. Replies: 1
    Last Post: 15th May 2010, 19:22
  5. insertion of multiple items in a single row
    By grimbaum in forum Qt Programming
    Replies: 4
    Last Post: 17th November 2006, 06:36

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.