public interface GroupRendererExt
Modifier and Type | Method and Description |
---|---|
Group |
newGroup(Grid grid)
Creates an instance of
Group for rendering. |
Groupfoot |
newGroupfoot(Grid grid)
Creates an instance of
Groupfoot for rendering. |
Group newGroup(Grid grid)
Group
for rendering.
The created component will be passed to RowRenderer.render(org.zkoss.zul.Row, 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 Group group = new Group();
group.applyProperties();
return group;
Note: DO NOT call AbstractComponent.setParent(org.zkoss.zk.ui.Component)
.
Grid
to create it for youGroupfoot newGroupfoot(Grid grid)
Groupfoot
for rendering.
The created component will be passed to RowRenderer.render(org.zkoss.zul.Row, 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 Groupfoot groupfoot = new Groupfoot();
groupfoot.applyProperties();
return groupfoot;
Note: DO NOT call AbstractComponent.setParent(org.zkoss.zk.ui.Component)
.
Grid
to create it for youCopyright © 2005-2021 Potix Corporation. All Rights Reserved.