public interface ListgroupRendererExt
| Modifier and Type | Method and Description |
|---|---|
Listgroup |
newListgroup(Listbox listbox)
Creates an instance of
Listgroup for rendering. |
Listgroupfoot |
newListgroupfoot(Listbox listbox)
Creates an instance of
Listgroupfoot for rendering. |
Listgroup newListgroup(Listbox listbox)
Listgroup for rendering.
The created component will be passed to ListitemRenderer.render(org.zkoss.zul.Listitem, T, int).
Note: remember to invoke AbstractComponent.applyProperties() to initialize
the properties, defined in the component definition, properly.
If null is returned, the default row is created as follow.
final Listgroup group = new Listgroup();
group.applyProperties();
return group;
Note: DO NOT call AbstractComponent.setParent(org.zkoss.zk.ui.Component).
Listbox to create it for youListgroupfoot newListgroupfoot(Listbox listbox)
Listgroupfoot for rendering.
The created component will be passed to ListitemRenderer.render(org.zkoss.zul.Listitem, T, int).
Note: remember to invoke AbstractComponent.applyProperties() to initialize
the properties, defined in the component definition, properly.
If null is returned, the default row is created as follow.
final Listgroupfoot groupfoot = new Listgroupfoot();
groupfoot.applyProperties();
return groupfoot;
Note: DO NOT call AbstractComponent.setParent(org.zkoss.zk.ui.Component).
Listbox to create it for youCopyright © 2015. All rights reserved.