0
<listbox id="lbx" rows="4">
<listhead><listheader label="Name"></listheader><listheader label="Album"></listheader></listhead>
</listbox>
public class page extends GenericForwardComposer{
Combobox searchBox;
private Grid SuggestGrid;
private String q;
Button b;
Page p;
Label la; Listcell h,m;
protected Listbox lbx; // autowired
private ListModelList list,listq; // the model of the listbox
public void doAfterCompose(Component comp) throws Exception {
super.doAfterCompose(comp);
for(int i=0;i<=10;i++)
{
Listitem li = new Listitem();
new Listcell("example").setParent(li);
new Listcell("google").setParent(li);
Label subTotalLb = new Label("$example ");
subTotalLb.setParent(li);
li.setParent(lbx);
}
}
我可以在此列表單元格中只添加字符串。我的zkoss代碼有什麼問題?
爲什麼不能我加入這個按鈕或標籤....
@The是文檔精英紳士:老兄,你在編輯後離開「海」了嗎? – JoseK 2010-12-09 09:46:43