b35-2073417.zul

来自「ZK是一个Ajax Java Web框架」· ZUL 代码 · 共 25 行

ZUL
25
字号
<?page id="testZul" title=" New ZUL Title" cacheable="false" 
	language="xul/html" zscriptLanguage="Java" contentType="text/html;charset=UTF-8"?>
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit"?>
<zk xmlns="http://www.zkoss.org/2005/zul" xmlns:h="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.zkoss.org/2005/zul/zul.xsd">
  <window title="Test Buttons in various components." border="normal" width="400px">
    <hbox>Buttons in listbox: Note: Button should look appropriate and tidy.

<listbox id="box" width="250px">
        <listhead sizable="true">
          <listheader label="name" sort="auto"/>
          <listheader label="gender" sort="auto"/>
        </listhead>
        <listitem>
          <listcell>
            <button label="ClickMe" onClick='self.setLabel("Tested OK")'/>
          </listcell>
          <listcell label="FEMALE">
            <button label="ClickMe" onClick='self.setLabel("Tested OK")'/>
          </listcell>
        </listitem>
      </listbox>
    </hbox>
  </window>
</zk>

⌨️ 快捷键说明

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