How can I chain scrolling events from Listview to Flickable ?
-
Are you sure you need that kind of setup? ListView inherits from a Flickable, you don't need to declare another one. I don't know of any easy chaining mechanism here, you would probably need to push mouse events further up the chain (using mouse.accepted = false).
-
Just set:
@
flickableDirection = Flickable.HorizontalAndVerticalFlick
@in your ListView or GridView. Alternatively, you can create your own element based on Column and Flickable. It all depends on your preference and features you need to have.
-
Is this issue solved? I want to scroll listview as horizontal direction. And also I want to flick each list item to vertical direction.
I include vertical flickable in listview's delegate.
It works well as PC.. But when I upload it to device( mobile ) , listview isn't scroll well because flickable takes mouse event ...
Is there any solution ??
Because of this reason, I tried to make listview 's flickableDirection Flickable.HorizontalAndVerticalFlick. But it's not working too..