class A{
private List<B> list;
// getter setter
public class B{
@command
public void delete(){
// remove itself from list
// Now how to post event to event queue to update list on browser
}
}
}
list
是在 zul 页面中绑定的。我发现的一种方法是使用BindUtils.postNotifyChange(null, null, this, "list");
,但它不起作用