⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 b30-1895907.zul

📁 ZK是一个Ajax Java Web框架
💻 ZUL
字号:
<?xml version="1.0" encoding="UTF-8"?><!--B30-1895907.zul{{IS_NOTE	Purpose:			Description:			History:		Tue Feb 19 18:29:28 TST 2008, Created by jumperchen}}IS_NOTECopyright (C) 2008 Potix Corporation. All Rights Reserved.{{IS_RIGHT}}IS_RIGHT--><zk xmlns:n="http://www.zkoss.org/2005/zk/native">	<n:ol>	<n:li>Please resize the header to show the horizontal scrollbar, and then scroll down the scrollbar. </n:li>	<n:li>Resize the header to shorten again, it should show correctly. </n:li>	</n:ol>	<window title="Live Data Demo" border="normal">		<zscript>			String[][] data = new String[200][2];			for(int j=0; j &lt; data.length; ++j) 			{				data[j][0] = "klaslkjaSLKJasl kaJSLajslak aklsjalSKJL "+j;				data[j][1] = "option "+j;			}			ListModel model = new ListModelList(Arrays.asList(data));			ListitemRenderer renderer = new ListitemRenderer()			{				public void render(Listitem item, Object data) throws Exception				{					String[] s = (String[])data;					new Listcell(s[0]).setParent(item);					new Listcell(s[1]).setParent(item);				}			}				</zscript>		<listbox id="list" rows="10" model="${model}" itemRenderer="${renderer}">			<listhead sizable="true">				<listheader label="Col A"/>				<listheader label="Col B"/>			</listhead>		</listbox>	</window></zk>

⌨️ 快捷键说明

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