index.zul

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

ZUL
46
字号
<?xml version="1.0" encoding="UTF-8"?><!--index.zul{{IS_NOTE	Purpose:			Description:			History:		Tue Oct  4 11:31:13     2005, Created by tomyeh}}IS_NOTECopyright (C) 2006 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>ZK.forge Components</h3>	<p>ZK.forge is a collection of components, themes and utilities	developed from community collaboration.</p>	<p>See also <a href="zkforge.sourceforge.net">ZK.forge at sourceforge.net</a></p>		]]></attribute>	</html> 	<h:ul>		<h:li><toolbarbutton label="FCKeditor" onClick="doSelect(&quot;zf1&quot;)"/></h:li>		<h:li><toolbarbutton label="Dojo Fisheye List" onClick="doSelect(&quot;zf2&quot;)"/></h:li>		<h:li><toolbarbutton label="Google Maps" onClick="doSelect(&quot;zf3&quot;)"/></h:li>	</h:ul></window>

⌨️ 快捷键说明

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