Removing Items From a PathView
QML and Qt Quick
1
Posts
1
Posters
2.0k
Views
1
Watching
-
I have a pathview that rotates through data in an underlying ListModel (Like the spinner example "Here":http://doc.qt.nokia.com/4.7-snapshot/declarative-ui-components-spinner.html ).
My problem is that I want to dynamically add/remove items as it spins around. (Add to one side, remove from the other.)
I can add items to the underlying model just fine, and it spins through them.
The problem comes when I want to remove items which have been displayed and are no longer in the visible area. I can't seem to find a way to do this which doesn't interrupt the spin.