gpt4 book ai didi

java - 我的 zkoss 代码出了什么问题?

转载 作者:行者123 更新时间:2023-12-01 15:58:55 25 4
gpt4 key购买 nike

 <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);
}


}

我只能在此列表单元格中添加字符串。

为什么我不能在此添加按钮或标签......

最佳答案

您可以在Listcell中创建自己的按钮

public void doAfterCompose(Component comp) throws Exception {
super.doAfterCompose(comp);

for(int i=0;i<=10;i++){
Listitem li = new Listitem();
Listcell lic = new ListCell();
li.appendChild(lic);
Button myBtn = new Button("Btn");
myBtn.setParent(lic);

//...

}
}

这里是来自 zkoss.org 的文档 Listboxes Contain Buttons

关于java - 我的 zkoss 代码出了什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4396657/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com