When I change the:
list.selectedItem.name = ‘name2’
then in my item renderer
the dataChange event is not fired!
and I can’t update the label with the name property…
any help?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Only additions and deletions to a
dataProviderare updated automatically – for modifications of an existing item to be auto-reflected, the particular property being updated should be declared as[Bindable]. Check ifnameproperty is bindable or not.