如何在 itemRenderer 中反映 list.selectedItem 的变化?
当我改变: list.selectedItem.name = 'name2'
然后在我的项目渲染器中
dataChange 事件不会被触发! 我无法使用 name 属性更新标签...
有什么帮助吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅对
dataProvider
的添加和删除会自动更新 - 为了自动反映现有项目的修改,正在更新的特定属性应声明为[Bindable]
。检查name
属性是否可绑定。Only additions and deletions to a
dataProvider
are updated automatically - for modifications of an existing item to be auto-reflected, the particular property being updated should be declared as[Bindable]
. Check ifname
property is bindable or not.使
name
属性可绑定。Make the
name
property bindable.