我正在使用 ZK 平台编写一个 java 程序。我有一个列表框,它有一些列表单元。我希望一些 Listcell 在其中有一个文本框,但 Listcell 的构造函数只有字符串作为输入参数,我不能在其中放置一个文本框。如何在 Listcell 中添加像 Textbox 这样的组件?
问问题
500 次
1 回答
2
将文本框父级设置为您的列表单元格,如下所示:
public class ListItemRenderer implements ListitemRenderer,Serializable{
@override
public void render(Listitem item,Object data) throws Exception{
....
Listcell lc=new Listcell;
Textbox text=new Textbox();
text.setParent(lc);
lc.setParent(item);
....
}
....
}
于 2012-12-19T05:52:37.260 回答