Problems with Open-Source Downloads read https://www.qt.io/blog/problem-with-open-source-downloads and https://forum.qt.io/post/638946
User Data show in popup on the basis of who has logged-in last.
-
I have a List Model which contains properties of 4 user. Repeater is use for showing the data of model.
But i want to show only three user name at time in popup on the basis of who has logged-in last.
-
@Shubham-Gupta
Insert a http://doc.qt.io/qt-5/qsortfilterproxymodel.html between your model and your view (Repeater):The
QSortFilterProxyModel
class provides support for sorting and filtering data passed between another model and a view
-
@JonB said in User Data show in popup on the basis of who has logged-in last.:
@Shubham-Gupta
Insert a http://doc.qt.io/qt-5/qsortfilterproxymodel.html between your model and your view (Repeater):The
QSortFilterProxyModel
class provides support for sorting and filtering data passed between another model and a viewOk thanx i try