Suggested case list:
Using timer to refresh a grid
383guest172.69.33.12125nk0uiMay 7, 2020 7:23:47 AMlinkuser model to move item to another listbox
120guest162.158.193.148d0n3krApr 2, 2020 5:28:28 AMlinkDisabled list item row passed to VM-1981
296fatih123160.83.36.13025nk0uiFeb 13, 2018 4:25:44 PMlinkDisabled list item row passed to VM-1981
295fatih123160.83.36.13025nk0uiFeb 13, 2018 4:25:16 PMlinkDisabled list item row passed to VM-1981
294fatih123160.83.36.13225nk0uiFeb 13, 2018 3:30:44 PMlinkgrid sample with ListModel/RowRenderer
816guest80.82.2.1312vah9ajFeb 21, 2017 11:42:21 AMlinkgrid sample with ListModel/RowRenderer
809guest175.98.113.1622vah9ajJan 26, 2017 9:19:33 AMlinkgrid sample with ListModel/RowRenderer
196guest79.185.142.402vah9ajApr 26, 2014 10:53:57 PMlinkgrid sample with ListModel/RowRenderer
195guest79.185.142.402vah9ajApr 26, 2014 10:53:54 PMlinkgrid sample with ListModel/RowRenderer
194guest79.185.142.402vah9ajApr 26, 2014 10:53:51 PMlinkgrid sample with ListModel/RowRenderer
193guest79.185.142.402vah9ajApr 26, 2014 10:53:48 PMlinkgrid sample with ListModel/RowRenderer
192guest79.185.142.402vah9ajApr 26, 2014 10:53:44 PMlinkgrid sample with ListModel/RowRenderer
191guest79.185.142.402vah9ajApr 26, 2014 10:53:40 PMlinkHierarchy table without using ZK PE/EE
1aaknai151.28.135.2131s871daJul 29, 2013 11:02:46 PMlinkgrid sample with ListModel/RowRenderer
128aaknai151.28.135.2132vah9ajJul 29, 2013 7:20:00 PMlinkuser model to move item to another listbox
1TonyQ114.25.109.94d0n3krApr 21, 2012 10:43:27 AMlinkUsing timer to refresh a grid
1TonyQ220.133.44.3725nk0uiFeb 17, 2012 3:17:34 AMlinkFire a event from child iframe
1TonyQ220.133.44.372eupjotFeb 3, 2012 5:04:52 AMlinkTextbox input restriction sample
1TonyQ72.21.245.2431b3nlr0Dec 20, 2011 10:09:10 AMlinkTest web core taglib in ZUL
1TonyQ198.203.175.175ofqkemDec 17, 2011 3:36:08 AMlinkLatest 10 Fiddles :
Another new ZK fiddle
4Avis172.68.106.17538t6r5fSep 20, 2024 10:07:14 AMlinkAnother new ZK fiddle
3Avis172.68.106.17438t6r5fSep 20, 2024 10:01:53 AMlinkAnother new ZK fiddle
2Avis172.68.106.13238t6r5fSep 20, 2024 10:00:37 AMlinkAnother new ZK fiddle
1Avis172.68.106.13238t6r5fSep 20, 2024 10:00:09 AMlinkAnother new ZK fiddle
117Avis172.68.106.1332hu0lh7Sep 20, 2024 10:00:03 AMlinkAnother new ZK fiddle
116Avis172.68.106.1332hu0lh7Sep 20, 2024 9:59:00 AMlinkAnother new ZK fiddle
115Avis172.68.106.1752hu0lh7Sep 20, 2024 9:57:21 AMlinkAnother new ZK fiddle
114Avis172.68.106.1752hu0lh7Sep 20, 2024 9:56:48 AMlinkAnother new ZK fiddle
113Avis172.68.106.1742hu0lh7Sep 20, 2024 9:55:50 AMlinkAnother new ZK fiddle
112Avis172.68.106.1752hu0lh7Sep 20, 2024 9:55:20 AMlinkprogress meter bar in other color
3guest162.158.107.48ckmhboSep 19, 2023 10:05:23 AMlinkresources
index.zulzul<zk>
<window id="mainWin" border="normal" width="100%">
<style>
.z-progressmeter-image {
background: url("http://i810.photobucket.com/albums/zz22/PinkSith/Nubar/top-new_zps72ae9651.jpg");
}
</style>
<zscript><![CDATA[
Integer allstep = 4;
Integer step = 1;
void reset() {
step1.setDisabled(false);
step2.setDisabled(false);
step3.setDisabled(false);
step4.setDisabled(false);
go(0, "");
}
void go(Integer s, String label) {
Integer percent = s * 100 / allstep;
if("".equals(label)) {
progress_label.setValue("Join ZK");
} else {
progress_label.setValue(percent + " % - " + "Join ZK - " + label);
}
progress.setWidth(percent+"%");
curr_met.setValue(percent);
}
]]></zscript>
<caption>
<vbox align="left">
<span style="background:url('http://i810.photobucket.com/albums/zz22/PinkSith/Nubar/top-new_zps72ae9651.jpg')">
<label id="progress" width="0%"/>
</span>
<progressmeter id="curr_met" value="0" width="300px" />
<label id="progress_label" value="Join ZK"></label>
</vbox>
</caption>
<hlayout sclass="z-valign-middle">
<button id="step1" label="Register" width="100px" height="80px" onClick='go(1,self.label)' autodisable="+self" />
<div hflex="true" align="center"></div>
<button id="step2" label="Login" width="100px" height="80px" onClick='go(2,self.label)' autodisable="+step1,+self" />
<div hflex="true" align="center"></div>
<button id="step3" label="Download" width="100px" height="80px" onClick="go(3,self.label)" autodisable="+step2,+step1,+self" />
<div hflex="true" align="center"></div>
<button id="step4" label="Enjoy" width="100px" height="80px" onClick='go(4,self.label+"!!")' autodisable="+step3,+step2,+step1,+self" />
</hlayout>
<separator height="20px"></separator>
<button id="reset" label="Clear" width="100%" onClick="reset()" />
</window>
</zk>