本文整理了Java中org.zkoss.zul.Listbox.getListfoot()
方法的一些代码示例,展示了Listbox.getListfoot()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Listbox.getListfoot()
方法的具体详情如下:
包路径:org.zkoss.zul.Listbox
类名称:Listbox
方法名:getListfoot
[英]Returns Listfoot belonging to this listbox, or null if no list footers at all.
[中]返回属于此listbox的Listfoot,如果根本没有列表页脚,则返回null。
代码示例来源:origin: org.zkoss.zk/zul
if (!itemOnly) {
avail.addAll(_listbox.getHeads());
final Listfoot listfoot = _listbox.getListfoot();
if (listfoot != null)
avail.add(listfoot);
代码示例来源:origin: org.zkoss.zk/zkmax
wh.write("</div>");
if(self.getListfoot() != null){
wh.write("<div id=\"").write(uuid).write("!foot\" class=\"").write(zcls).write("-footer\">")
.write("<table width=\"").write(self.getInnerWidth()).write("\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"table-layout:fixed\">");
wh.writeln(self.getListfoot())
.write("</table></div>");
代码示例来源:origin: org.zkoss.zk/zkmax
wh.write("</div>");
if(self.getListfoot() != null){
wh.write("<div id=\"").write(uuid).write("!foot\" class=\"").write(zcls).write("-footer\">")
.write("<table width=\"").write(self.getInnerWidth()).write("\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"table-layout:fixed\">");
wh.writeln(self.getListfoot())
.write("</table></div>");
内容来源于网络,如有侵权,请联系作者删除!