Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
i used interactive on listview and worked good but when i do this on listview that is in a scrollview this does not work. how to do enable interactive listview in scrollview? im grateful for any help (:
Hi,
You should provide a minimal example of the code that is giving you trouble.
@SGaist this is my code:
ListView { id: leftFrameListView x: 10 spacing: 1 model: 10 interactive: true // Does not work delegate: Rectangle { id: listViewRect x: 20 width: leftFrameListView.width - 40 height: 60 radius: 15 color: "white" } }