In ZK Can we PostNotifyChange more than one variables

大城市里の小女人 提交于 2019-12-11 05:09:28

问题


I will want to notify some specific variables of a class with the help of

PostNotifyChange

So i was trying

BindUtils.postNotifyChange(null, null, taskListModel, "model,sequence");

It is not working :( Can we PostNotifyChange more than one variable something like we doing in

NotifyChange

@NotifyChange({ "taskList","sequence" })

Is it possible or not with

PostNotifyChange


回答1:


I don't believe so, sorry.

From the source, it appears BindUtils just takes a single property name and doesn't try to split it out. Could be a nice feature request.



来源:https://stackoverflow.com/questions/14400964/in-zk-can-we-postnotifychange-more-than-one-variables

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!