listbox-custom.zul
来自「ZK是一个Ajax Java Web框架」· ZUL 代码 · 共 49 行
ZUL
49 行
<?xml version="1.0" encoding="UTF-8"?><!--listbox-custom.zul{{IS_NOTE Purpose: Description: History: Mon Mar 19 16:03:39 2007, Created by tomyeh}}IS_NOTECopyright (C) 2007 Potix Corporation. All Rights Reserved.{{IS_RIGHT}}IS_RIGHT--><window title="Customize Look and Feel"> <script type="text/javascript"> function Selectable_bgcolor(row) { return row.className.endsWith("sel") ? "orange": "yellow"; } </script> <listbox width="250px"> <listhead sizable="true"> <listheader label="name" sort="auto"/> <listheader label="gender" sort="auto"/> </listhead> <listitem> <listcell label="Mary"/> <listcell label="FEMALE"/> </listitem> <listitem> <listcell label="John"/> <listcell label="MALE"/> </listitem> <listitem> <listcell label="Jane"/> <listcell label="FEMALE"/> </listitem> <listitem> <listcell label="Henry"/> <listcell label="MALE"/> </listitem> </listbox></window>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?