Suggested case list:

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

update the textbox value and fire a onChange event (Client)

2TonyQ220.133.44.37qdorurFeb 12, 2012 11:56:25 PMlink

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

identify firefox or not in server side

1TonyQ198.203.175.1751nv2qreDec 10, 2011 4:25:04 AMlink

ZK addThis integration

1TonyQ198.203.175.1751apl96jNov 5, 2011 4:12:50 AMlink

Trigger onChange for textbox in client manually.

1TonyQ198.203.175.1751tmsvs1Sep 22, 2011 5:23:43 AMlink

modify selected status of listbox after compose

1guest61.224.42.2033486viqSep 18, 2011 12:26:53 PMlink

ckeditor startup with source mode

1benbai61.216.4.1961lvlb1lSep 11, 2011 1:56:30 PMlink

apply style to all textbox in css

1TonyQ198.203.175.1751l8b5kkSep 10, 2011 12:55:52 AMlink

Require user to enter uppercase chars only in textbox

1TonyQ198.203.175.1751cl18ghSep 9, 2011 12:58:13 AMlink

The last position that the mouse was clicked

3sunflower60.175.249.16539o3m78Sep 8, 2011 10:08:32 PMlink

How to invoke server side onClick event with XHTML component

1TonyQ198.203.175.17511spe5sSep 7, 2011 8:01:56 AMlink

Client event - onFocus/onBlur

1TonyQ198.203.175.1752met717Sep 1, 2011 6:13:24 AMlink

Databinding with TypeConverter sample

1TonyQ198.203.175.1751t0gtrkAug 31, 2011 12:47:46 AMlink

grid sample with ListModel/RowRenderer

5guest198.203.175.1752vah9ajAug 31, 2011 12:27:35 AMlink

Multiple drag - finetune

3TonyQ198.203.175.175393nlq1Aug 30, 2011 6:49:05 AMlink

A window doModal reusing example - composer way

5TonyQ12.208.243.66126pn69Aug 28, 2011 12:04:14 PMlink

Latest 10 Fiddles :

Hello ZK MVVM

11guest122.116.167.1592aj5pdnMay 23, 2013 2:46:36 AMlink

Hello ZK MVVM test2

10guest122.116.167.1592aj5pdnMay 23, 2013 2:28:22 AMlink

Hello ZK MVVM test2

9guest122.116.167.1592aj5pdnMay 23, 2013 2:27:14 AMlink

Hello ZK MVVM test2

8guest122.116.167.1592aj5pdnMay 23, 2013 2:26:31 AMlink

Hello ZK MVVM test2

7guest122.116.167.1592aj5pdnMay 23, 2013 2:25:46 AMlink

Hello ZK MVVM test

6guest122.116.167.1592aj5pdnMay 23, 2013 1:47:48 AMlink

Hello ZK MVVM

5guest122.116.167.1592aj5pdnMay 23, 2013 1:45:03 AMlink

Hello ZK MVVM

4guest122.116.167.1592aj5pdnMay 23, 2013 1:44:09 AMlink

Hello ZK MVVM

3guest122.116.167.1592aj5pdnMay 23, 2013 1:40:56 AMlink

Hello ZK MVVM

2guest122.116.167.1592aj5pdnMay 23, 2013 1:40:28 AMlink

Scrollable Panel

6guest134.68.31.2271qr4n3lApr 13, 2012 1:13:00 PMlink

resources

index.zulzul<zk xmlns:w="client"> <script> function toggleTemplatePanel(w) { var tp = w.$f('templatePanel'); $('#' + tp.uuid).slideToggle(); } </script> <window border="normal" title="hello" apply="pkg$.TestComposer" width="500px" height="500px"> <grid> <columns> <column width="75px"/> <column /> </columns> <rows> <row> <label value="stuff label"/> <label value="stuff"/> </row> <row> <label value="Instructions"/> <!-- outer panel has the text area and an inner panel --> <panel> <panelchildren> <textbox id="instructions" rows="6" width="100%"> </textbox> <hlayout> <label value="-->"> <attribute w:name="onClick"><![CDATA[ toggleTemplatePanel(this); ]]></attribute> </label> </hlayout> <!-- inner panel has a max size and specifies the overflow so that a scroll bar will pop up when it gets too big --> <panel id="templatePanel" style="max-height:125px;overflow-x:hidden;overflow-y:auto"> <panelchildren> <vlayout> <a><label value="Here is template #1"/></a> <a><label value="Here is template #2"/></a> <a><label value="Here is template #3"/></a> <a><label value="Here is template #4"/></a> <a><label value="Here is template #5"/></a> <a><label value="Here is template #6"/></a> <a><label value="Here is template #7"/></a> <a><label value="Here is template #8"/></a> <a><label value="Here is template #9"/></a> <a><label value="Here is template #10"/></a> <a><label value="Here is template #11"/></a> <a><label value="Here is template #12"/></a> <a><label value="Here is template #13"/></a> <a><label value="Here is template #14"/></a> <a><label value="Here is template #15"/></a> </vlayout> </panelchildren> </panel> </panelchildren> </panel> </row> <row> <label value="morestuff"/> <button label="try me" onClick="alert(templatePanel.isVisible())"/> </row> </rows> </grid> </window> </zk> TestComposer.javajavaimport org.zkoss.zk.ui.*; import org.zkoss.zk.ui.event.*; import org.zkoss.zk.ui.util.*; import org.zkoss.zk.ui.ext.*; import org.zkoss.zk.au.*; import org.zkoss.zk.au.out.*; import org.zkoss.zul.*; public class TestComposer extends GenericForwardComposer{ public void doAfterCompose(Component comp) throws Exception { super.doAfterCompose(comp); } public void onClick$btn(Event e) throws InterruptedException{ Messagebox.show("Hi btn"); } }