parameterListModel.append({"parameter": par, "value": tmp[par]})
}
}
-kimmo
From: devel-boun...@lists.sailfishos.org
[mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Jarko Vihriala
Sent: Friday, May 23, 2014 11:24 AM
To: Sailfish OS Developers
Subject: Re: [Sa
you can check Mitakuuluu QueryExecutor asynchronous SQLite
implementation:
https://github.com/CODeRUS/mitakuuluu2/tree/master/threadworker
And my contacts and converstaion models fetching data from SQLite:
https://github.com/CODeRUS/mitakuuluu2/tree/master/client/src
23.05.2014 12:17, Kimmo Li
rom: devel-boun...@lists.sailfishos.org [devel-boun...@lists.sailfishos.org]
on behalf of Mikko Leppänen [mleppa...@gmail.com]
Sent: Friday, May 23, 2014 11:20 AM
To: Sailfish OS Developers
Subject: Re: [SailfishDevel] Technical question: populating ListModel from C++
Hi,
Or if you don't want
Hi,
Or if you don't want to subclass e.g. qabstractitemmodel, you can always
return a QVariantList(or QList) from c++ and expose that sequence to QML.
Then use that JS array to populate ListModel.
/Mikko
2014-05-23 10:53 GMT+03:00 Markus Svensson :
> Hi,
>
> I have done the same thing in my Sa
Hi,
I have done the same thing in my Sailfish learning project. It was way more
complicated than I would have liked it to be (or maybe I did it in the wrong
way...).
Feel free to have a look at how I implemented it:
https://github.com/Ortofta/SilicaNote
The code quality is probably not the be
Hi,,
Thank you Janne and Jarko, I will take a look on both of these approaches;
> use the QSqlQueryModel in your c++ and expose that to QML ; just like in :
> http://qt-project.org/wiki/How_to_use_a_QSqlQueryModel_in_QML
> subclassing QAbstractItemModel. See
> http://qt-project.org/doc/qt-5/q
Hi!
Either that or use the QSqlQueryModel in your c++ and expose that to QML ; just
like in :
http://qt-project.org/wiki/How_to_use_a_QSqlQueryModel_in_QML
thanks, Jarko
From: devel-boun...@lists.sailfishos.org [devel-boun...@lists.sailfishos.org]
on behalf of
Hi,
I suggest you implement the model yourself by subclassing QAbstractItemModel.
See http://qt-project.org/doc/qt-5/qtquick-modelviewsdata-cppmodels.html
and http://qt-project.org/doc/qt-5/qabstractitemmodel.html to get
started.
--
Janne
2014-05-23 9:17 GMT+03:00 Kimmo Lindholm :
> Hi All,
>
>