Processing...

Suggested case list:

Using timer to refresh a grid

383guest172.69.33.12125nk0uiMay 7, 2020 7:23:47 AMlink

user model to move item to another listbox

120guest162.158.193.148d0n3krApr 2, 2020 5:28:28 AMlink

Disabled list item row passed to VM-1981

296fatih123160.83.36.13025nk0uiFeb 13, 2018 4:25:44 PMlink

Disabled list item row passed to VM-1981

295fatih123160.83.36.13025nk0uiFeb 13, 2018 4:25:16 PMlink

Disabled list item row passed to VM-1981

294fatih123160.83.36.13225nk0uiFeb 13, 2018 3:30:44 PMlink

grid sample with ListModel/RowRenderer

816guest80.82.2.1312vah9ajFeb 21, 2017 11:42:21 AMlink

grid sample with ListModel/RowRenderer

809guest175.98.113.1622vah9ajJan 26, 2017 9:19:33 AMlink

grid sample with ListModel/RowRenderer

196guest79.185.142.402vah9ajApr 26, 2014 10:53:57 PMlink

grid sample with ListModel/RowRenderer

195guest79.185.142.402vah9ajApr 26, 2014 10:53:54 PMlink

grid sample with ListModel/RowRenderer

194guest79.185.142.402vah9ajApr 26, 2014 10:53:51 PMlink

grid sample with ListModel/RowRenderer

193guest79.185.142.402vah9ajApr 26, 2014 10:53:48 PMlink

grid sample with ListModel/RowRenderer

192guest79.185.142.402vah9ajApr 26, 2014 10:53:44 PMlink

grid sample with ListModel/RowRenderer

191guest79.185.142.402vah9ajApr 26, 2014 10:53:40 PMlink

Hierarchy table without using ZK PE/EE

1aaknai151.28.135.2131s871daJul 29, 2013 11:02:46 PMlink

grid sample with ListModel/RowRenderer

128aaknai151.28.135.2132vah9ajJul 29, 2013 7:20:00 PMlink

user model to move item to another listbox

1TonyQ114.25.109.94d0n3krApr 21, 2012 10:43:27 AMlink

Using timer to refresh a grid

1TonyQ220.133.44.3725nk0uiFeb 17, 2012 3:17:34 AMlink

Fire a event from child iframe

1TonyQ220.133.44.372eupjotFeb 3, 2012 5:04:52 AMlink

Textbox input restriction sample

1TonyQ72.21.245.2431b3nlr0Dec 20, 2011 10:09:10 AMlink

Test web core taglib in ZUL

1TonyQ198.203.175.175ofqkemDec 17, 2011 3:36:08 AMlink

Latest 10 Fiddles :

grid vflex with or without timer

6kevinLin172.69.221.823u4u42mMay 19, 2025 9:47:00 AMlink

grid vflex with or without timer

5kevinLin172.69.221.823u4u42mMay 19, 2025 9:46:59 AMlink

grid vflex with or without timer

4kevinLin162.158.243.593u4u42mMay 19, 2025 9:45:34 AMlink

Another new ZK fiddle

2guest162.158.90.12433j9gmbMay 19, 2025 9:33:46 AMlink

Another new ZK fiddle

1guest162.158.90.12533j9gmbMay 19, 2025 9:33:26 AMlink

Another new ZK fiddle

5guest172.69.109.1763389khkMay 19, 2025 8:58:27 AMlink

Another new ZK fiddle

4guest198.41.242.2113389khkMay 19, 2025 8:39:48 AMlink

Another new ZK fiddle

3guest198.41.242.2113389khkMay 19, 2025 8:38:36 AMlink

Another new ZK fiddle

2guest198.41.242.2113389khkMay 19, 2025 8:38:21 AMlink

Another new ZK fiddle

1guest198.41.242.2103389khkMay 19, 2025 8:36:20 AMlink

Bandbox

21guest172.71.102.2032pdvbrSep 3, 2024 10:39:49 AMlink

resources

index.zulzul<zk> <div> <bandbox id="withGrid" onChanging="javascript:alert('on change')"> <bandpopup width="200px"> <grid height="100px" width="150px"> <rows> <row>1</row> <row>2</row> <row>3</row> <row>4</row> <row>5</row> <row>6</row> </rows> </grid> </bandpopup> </bandbox> contains grid OK </div> <div> <bandbox id="withListbox" onChanging="javascript:alert('on change')"> <bandpopup width="200px"> <listbox height="100px" width="150px" checkmark="true" multiple="true"> <listitem label="1" /> <listitem label="2" /> <listitem label="3" /> <listitem label="4" /> <listitem label="5" /> <listitem label="6" /> </listbox> </bandpopup> </bandbox> contains listbox - triggers onChanging after using the listbox scrollbar inside the popup, and then click outside the popup (no selection, no key press required) </div></zk>innergrid.zulzul<zk> <script type="text/javascript"><![CDATA[ zk.afterLoad("zul.wgt", function () { zul.wgt.Radiogroup.prototype.doKeyDown_ = function (evt) { var key = evt.keyCode; if (key == 13 || key == 27) // ENTER or ESC zk.Widget.$(jq('$bdx')[0]).close({sendOnOpen:true}); } }); ]]></script> <grid id="grid"> <rows> <row> <radiogroup orient="vertical" onCheck=""> <radio label="item one" value="item one" /> <radio label="item two" value="item two" /> </radiogroup> </row> </rows> </grid> </zk>