Quantcast
Channel: Qt DevNet forums: Qt Quick 1283365070**
Viewing all articles
Browse latest Browse all 4972

No mouse interaction with a delegate in TableViewColumn (QtQuick Controls)

$
0
0
Hello I’m using a QtQuick Controls TableView with a Slider delegate in a column. Something like that: ... TableView {     TableViewColumn{ role: "value"  ; title: "Value" ; width: 100             delegate : Slider {                 value : modelData.value                 minimumValue: modelData.inf                 maximumValue: modelData.sup                 onValueChanged: modelData.setValue(value)             }       }     TableViewColumn{ ... } } ... The slider doesn’t react to mouse interactions. Any idea how to enable the mouse interaction ? Thanks in Advance, Laurent

Viewing all articles
Browse latest Browse all 4972

Trending Articles