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 have a slide in qml which have property called value with int data type. I want to display it in text when value changed. How to do it?
It's trivial. Look at following code:
@ property int value: 10 Text { text: value } @
Do you've any specific requirements ?