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

📄 z35-spinner-003.zul

📁 ZK是一个Ajax Java Web框架
💻 ZUL
字号:
<zk>
<vbox>
<label style="font-weight:bold">modify spinner constraint at run time:</label>
<label>1. Originally, the spinner has no constrant;</label>
<label>2. Make spinner's value up &amp; down until over the 10 or -10.</label> 
<label>3. Click the button will set the spinner to init value = 1, min = -10 &amp; max = 10, step = 2</label>
<label>4. Make spinner's value up &amp; down, watch it's behavior.</label>
</vbox>

<window title="Spinner test" border="normal" width="200px">
<spinner id="sp"/>
<separator />
<button label="set spinner constraint">
<attribute name="onClick"><![CDATA[
                  
                  sp.setValue(new Integer(1));
                  sp.setStep(2);
                  sp.setConstraint("min -10 max 10");
                  
                  ]]></attribute>
</button>                  
</window>
</zk>

⌨️ 快捷键说明

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