|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface ListgroupRendererExt
Provides additional control to ListitemRenderer for instantiating
Listgroup and Listgroupfoot.
| Method Summary | |
|---|---|
Listgroup |
newListgroup(Listbox listbox)
Creates an instance of Listgroup for rendering. |
Listgroupfoot |
newListgroupfoot(Listbox listbox)
Creates an instance of Listgroupfoot for rendering. |
| Method Detail |
|---|
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 you
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||