我的 zkoss 代码有什么问题?

发布于 2024-10-06 23:13:09 字数 993 浏览 6 评论 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);
        }


    }

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

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

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


    }

i can add only string in this list cell.

why cant i add button or label in this....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

じее 2024-10-13 23:13:10

您可以在 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 的文档
列表框包含按钮

you can create your own Button in 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);

        //...

    }
}

Here are docs from zkoss.org
Listboxes Contain Buttons

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文