I have a abstractListModel implemented that regularly calls dataCanged() to update a list. In the listmodel I have a variable that I want to display outside of the listview, but also want it to be updated when the listmodel is updated. Is there a way to emit dataChanged on elements displayed outside the listview?

Thanks, Kyle

link|improve this question

25% accept rate
feedback

1 Answer

QML properties have implicitely signals (onChanged) out of the box that can be used for such cases. See the examples here:

http://doc.qt.nokia.com/4.7-snapshot/qdeclarativeintroduction.html#property-change-notifications

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.