2008年12月24日水曜日

ZK: MVC リストボックスをクリアする

データバインドされているリストボックスをクリアするにはbeanにnullを代入し、
データバインダを使用してデータロードする。


public void onClick$clearBtn(Event e) throws Exception{
empData = null;
empListbox.unsetVariable("selected", true);
binder = (AnnotateDataBinder)page.getVariable("binder");
binder.loadAll();
}

0 件のコメント: