Qt 6.11 is out! See what's new in the release
blog
How to call c++ method on QObject from Repeater delegate?
General and Desktop
1
Posts
1
Posters
676
Views
1
Watching
-
I noticed that unfortunately, if i have Q_PROPERTY of type QQmlListProperty<Customer> and used is as model in Repeater, then in that Repeater delegate, i can access just Customer properties AND NOT METHODS (even if they are marked by Q_INVOKABLE or if it is public slot). Why??? Is there any trick how do it easily?
Currently in ListView delegate, i am using something like ListView.view.model[index].method(), but it looks bad...