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).
Hi, i'm beginner in Qt and i create an application. I would like to know if there is a TextField event "is being edited".
Thank you in advance for your answers =)
hi @DropNod see focus and textChanged
TextField{ text: "the text" onTextChanged: console.log("txt changed") onFocusChanged: if (focus)console.log("focused ") }
"OnFusChanged" event works ! Thanks for your answer !
:) onFocusChanged