On 2011/12/07 01:59 PM, kai.koe...@nokia.com wrote:

> My suggestion would be to look into (nested) ListViews (or GridViews) + 
> appropriate Model(s) behind the scenes.

     Grid {
         id: maingrid
         anchors.fill: parent
         columns: 3
         rows: 2

         Repeater {
             model: 6
             ListView {
                 width: parent.width / 3
                 height: parent.height / 2
                 model: orderModel
                 delegate: OrderLineDelegate {}
             }
         }

I have something like the above. Is it possible to set the orderModel 
externally for each ListView created by the Repeater from C++? In case 
you are tempted to answer only "Yes", how? :)

Regards
-- 
Alex
_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to