b30-1826736.zul
来自「ZK是一个Ajax Java Web框架」· ZUL 代码 · 共 26 行
ZUL
26 行
<?xml version="1.0" encoding="ISO-8859-1"?><window id="win">The bug is that the first column of data disappear when i press theheader to sort by a column. <zscript><![CDATA[ List names = new ArrayList(3); names.add("Tom"); names.add("John"); names.add("Mary"); ]]></zscript> <listbox width="500px" id="boxListado" height="200px" model="@{names}"> <listhead> <listheader label="name" sort="auto"/> </listhead> <listitem self="@{each=obj}"> <listcell><label value="@{obj}"/></listcell> </listitem> </listbox> <zscript> AnnotateDataBinder binder = new AnnotateDataBinder(win); binder.loadAll();</zscript></window>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?