?? z30-tree-0005.zul
字號:
<zk>
Test Treemodel, when you open the tree node, it should not show any error.
<window height="50%" title="Load on Demand">
<zscript>
import org.zkoss.zkdemo.test2.tree.BinaryTreeModel;
ArrayList al = new ArrayList();
int i=0;
for(; i < 100000; i++)
{
Object obj = ""+i;
al.add(obj);
}
BinaryTreeModel btm = new BinaryTreeModel(al);
</zscript>
<tree vflex="true" height="50%" model="${btm}" id="tree" >
</tree>
</window>
</zk>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -