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
↧