How to avoid binding loop on a TextArea I want to update programatically?
Unsolved
QML and Qt Quick
-
I want to have a TextArea that I can update from the backend - what is the right way to do it?
What I did right now is bind the
text
property to the backend property - and it works, ish: when I load new text in the backend, the text gets loaded into the TextArea as well - but after a delay and complaint of a binding loop.