b30-1963607.zul
来自「ZK是一个Ajax Java Web框架」· ZUL 代码 · 共 46 行
ZUL
46 行
<?xml version="1.0" encoding="UTF-8"?><!--B30-1963607.zul{{IS_NOTE Purpose: Description: History: Wed May 14 17:16:03 2008, Created by tomyeh}}IS_NOTECopyright (C) 2008 Potix Corporation. All Rights Reserved.{{IS_RIGHT}}IS_RIGHT--><window title="Load more than one page at a time"> <grid mold="paging" pageSize="5"> <columns/> <rows id="rows"/> </grid> <button label="Test Grid"> <attribute name="onClick"><![CDATA[ for (int i = 0; i < 6; i++) { Row r= new Row(); new Label("r" + i).setParent(r); r.setParent(rows); } ]]></attribute> </button> <paging pageSize="5" id="pg"/> <listbox id="l" mold="paging" paginal="${pg}"> <listhead/> </listbox> <button label="Test Listbox"> <attribute name="onClick"><![CDATA[ for (int i = 0; i < 6; i++) new Listitem("li"+i).setParent(l); ]]></attribute> </button></window>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?