index.zul

来自「非常接近C/S操作方式的Java Ajax框架-ZK 用ZK框架使你的B/S应」· ZUL 代码 · 共 43 行

ZUL
43
字号
<?xml version="1.0" encoding="UTF-8"?><!--index.zul{{IS_NOTE	Purpose:			Description:			History:		Tue Oct  4 11:31:13     2005, Created by henrichen}}IS_NOTECopyright (C) 2005 Potix Corporation. All Rights Reserved.{{IS_RIGHT}}IS_RIGHT--><window xmlns:h="http://www.w3.org/1999/xhtml">	<zscript><![CDATA[		void doSelect(String s) {			Tree tree = Path.getComponent("//userGuide/root/treelist/toc");			Treeitem treeitem = tree.getSpaceOwner().getFellow(s);			tree.selectItem(treeitem);			java.util.Set items = new HashSet();			items.add(treeitem);			Events.postEvent(new SelectEvent("onSelect", tree, items));		}	]]></zscript>		<html>		<attribute name="content"><![CDATA[			<h3>Toolbar and Menus</h3>		]]></attribute>	</html>	<h:ul>		<h:li><toolbarbutton label="Toolbar and Toolbarbutton" onClick="doSelect(&quot;t1&quot;)"/></h:li>		<h:li><toolbarbutton label="Menu" onClick="doSelect(&quot;t2&quot;)"/></h:li>		<h:li><toolbarbutton label="More Menu Features" onClick="doSelect(&quot;t3&quot;)"/></h:li>	</h:ul></window>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?