Processing...
Suggested case list:
Using timer to refresh a grid
383
guest
172.69.33.121
25nk0ui
May 7, 2020 7:23:47 AM
link
user model to move item to another listbox
120
guest
162.158.193.148
d0n3kr
Apr 2, 2020 5:28:28 AM
link
Disabled list item row passed to VM-1981
296
fatih123
160.83.36.130
25nk0ui
Feb 13, 2018 4:25:44 PM
link
Disabled list item row passed to VM-1981
295
fatih123
160.83.36.130
25nk0ui
Feb 13, 2018 4:25:16 PM
link
Disabled list item row passed to VM-1981
294
fatih123
160.83.36.132
25nk0ui
Feb 13, 2018 3:30:44 PM
link
grid sample with ListModel/RowRenderer
816
guest
80.82.2.131
2vah9aj
Feb 21, 2017 11:42:21 AM
link
grid sample with ListModel/RowRenderer
809
guest
175.98.113.162
2vah9aj
Jan 26, 2017 9:19:33 AM
link
grid sample with ListModel/RowRenderer
196
guest
79.185.142.40
2vah9aj
Apr 26, 2014 10:53:57 PM
link
grid sample with ListModel/RowRenderer
195
guest
79.185.142.40
2vah9aj
Apr 26, 2014 10:53:54 PM
link
grid sample with ListModel/RowRenderer
194
guest
79.185.142.40
2vah9aj
Apr 26, 2014 10:53:51 PM
link
grid sample with ListModel/RowRenderer
193
guest
79.185.142.40
2vah9aj
Apr 26, 2014 10:53:48 PM
link
grid sample with ListModel/RowRenderer
192
guest
79.185.142.40
2vah9aj
Apr 26, 2014 10:53:44 PM
link
grid sample with ListModel/RowRenderer
191
guest
79.185.142.40
2vah9aj
Apr 26, 2014 10:53:40 PM
link
Hierarchy table without using ZK PE/EE
1
aaknai
151.28.135.213
1s871da
Jul 29, 2013 11:02:46 PM
link
grid sample with ListModel/RowRenderer
128
aaknai
151.28.135.213
2vah9aj
Jul 29, 2013 7:20:00 PM
link
user model to move item to another listbox
1
TonyQ
114.25.109.94
d0n3kr
Apr 21, 2012 10:43:27 AM
link
Using timer to refresh a grid
1
TonyQ
220.133.44.37
25nk0ui
Feb 17, 2012 3:17:34 AM
link
Fire a event from child iframe
1
TonyQ
220.133.44.37
2eupjot
Feb 3, 2012 5:04:52 AM
link
Textbox input restriction sample
1
TonyQ
72.21.245.243
1b3nlr0
Dec 20, 2011 10:09:10 AM
link
Test web core taglib in ZUL
1
TonyQ
198.203.175.175
ofqkem
Dec 17, 2011 3:36:08 AM
link
Latest 10 Fiddles :
Another new ZK fiddle
1
guest
172.69.22.168
3bi5dd0
Mar 14, 2025 8:57:53 AM
link
ZK Chosenbox Sample
135
guest
172.70.55.102
1e133ot
Mar 14, 2025 8:56:12 AM
link
ZK 8 x EL 3.0
4
guest
172.71.215.28
smcii2
Mar 13, 2025 10:17:02 AM
link
ZK 8 x EL 3.0
3
guest
172.71.215.27
smcii2
Mar 13, 2025 10:16:37 AM
link
ZK 8 x EL 3.0
2
guest
172.71.215.28
smcii2
Mar 13, 2025 10:16:23 AM
link
grid deselect
1
guest
172.71.155.44
d0eqcv
Mar 13, 2025 8:30:45 AM
link
Another new ZK fiddle
22
guest
172.71.155.43
20846g3
Mar 13, 2025 8:24:21 AM
link
Another new ZK fiddle
21
guest
172.71.155.44
20846g3
Mar 13, 2025 8:23:21 AM
link
Another new ZK fiddle
20
guest
172.71.155.44
20846g3
Mar 13, 2025 8:22:52 AM
link
Another new ZK fiddle
19
guest
172.71.155.44
20846g3
Mar 13, 2025 8:22:31 AM
link
gridgroup dynamic template group header
7
Robert
220.133.44.147
23op11h
Dec 9, 2014 3:01:29 AM
link
resources
index.zul
zul
<?xml version="1.0" encoding="UTF-8"?> <?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?> <zk xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd"> <window id="thePanel" apply="org.zkoss.bind.BindComposer" viewModel="@id('vm') @init('pkg$.MyObjectViewModel')" validationMessages="@id('vmsgs')" > <checkbox checked="@bind(vm.alternativeTemplate)" label="use alternative template"/> <tablelayout columns="2" width="100%"> <tablechildren width="50%"> <panel title="Demo:"> <panelchildren> <grid id="theGrid" model="@bind(vm.myObjectViewModel) @template(vm.alternativeTemplate ? 'alternative' : 'default')" emptyMessage="No data"> <columns> <column width="50%" label="Description" sort="auto"/> <column width="50%" label="Value"/> </columns> <template name="default:group"> <group label="@load(each)"/> </template> <template name="default" var="a"> <row> <label value="@load(a.description)"/> <label value="@load(a.value)" /> </row> </template> <template name="alternative:group"> <group label="@load(each)"/> </template> <template name="alternative" var="a"> <row> <label value="@load(a.value)" /> <label value="@load(a.description)"/> </row> </template> </grid> </panelchildren> </panel> </tablechildren> </tablelayout> </window> </zk>
MyObject.java
java
import java.math.BigDecimal; /** * * @author
[email protected]
* @version 1.0 */ public class MyObject { private String groupName; private BigDecimal value; private String description; public MyObject(String groupName, BigDecimal value, String description) { this.groupName = groupName; this.value = value; this.description = description; } public String getGroupName() { return groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public BigDecimal getValue() { return value; } public void setValue(BigDecimal value) { this.value = value; } public String toString () { return description + " " + value; } }
MyObjectViewModel.java
java
import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; import org.zkoss.bind.annotation.Init; /** * * @author
[email protected]
* @version 1.0 */ public class MyObjectViewModel { private List<MyObject> myObjectList; private boolean alternativeTemplate = false; @Init public void init() { myObjectList = new ArrayList<MyObject>(); for(int i=0; i<3; i++) { myObjectList.add(new MyObject("Group 1", new BigDecimal(i+10*1), "Entry #"+(i+1))); myObjectList.add(new MyObject("Group 2", new BigDecimal(i+10*2), "Entry #"+(i+1))); myObjectList.add(new MyObject("Group 3", new BigDecimal(i+10*3), "Entry #"+(i+1))); } } public MyObjectViewGroupModel getMyObjectViewModel() { return new MyObjectViewGroupModel(myObjectList, new MyObjectComparator()); } public void setAlternativeTemplate(boolean flag) { alternativeTemplate = flag; } public boolean isAlternativeTemplate() { return alternativeTemplate; } }
MyObjectViewGroupModel.java
java
import java.util.Comparator; import java.util.List; import org.zkoss.zul.GroupsModelArray; /** * * @author
[email protected]
* @version 1.0 */ public class MyObjectViewGroupModel extends GroupsModelArray<MyObject, String, String, Object> { public MyObjectViewGroupModel(List<MyObject> myObjectList, Comparator<MyObject> myObjectComparator) { super(myObjectList.toArray(new MyObject[0]), myObjectComparator); } @Override protected String createGroupFoot(MyObject[] groupdata, int index, int col) { return super.createGroupFoot(groupdata, index, col); } @Override protected String createGroupHead(MyObject[] groupdata, int index, int col) { if(groupdata.length > 0) { return groupdata[0].getGroupName(); } return "no groupdata found; check your group model."; } }
MyObjectComparator.java
java
import java.util.Comparator; import org.zkoss.zul.GroupComparator; /** * * @author
[email protected]
* @version 1.0 * */ public class MyObjectComparator implements Comparator<MyObject>, GroupComparator<MyObject> { /** * Invoked after compareGroup if compareGroup returns 0 (ie, the objects are equal) * * @param o1 * @param o2 * @return */ @Override public int compare(MyObject o1, MyObject o2) { return o1.getGroupName().compareTo(o2.getGroupName()); } /** * Invoked by the group view model to determine which group the objects are to be part of * If objects are equal (ie, comparison returns 0) #compare will be invoked to determine order in the group * * @param o1 * @param o2 * @return */ @Override public int compareGroup(MyObject o1, MyObject o2) { return o1.getGroupName().compareTo(o2.getGroupName()); } }
Sorry, JavaScript must be enabled.
Change your browser options, then
try again
.