Uses of Interface
org.zkoss.zul.GroupsModel
-
Packages that use GroupsModel Package Description org.zkoss.stateless.state org.zkoss.zul org.zkoss.zul.event org.zkoss.zul.impl -
-
Uses of GroupsModel in org.zkoss.stateless.state
Methods in org.zkoss.stateless.state with parameters of type GroupsModel Modifier and Type Method Description static <D,G,F,R extends IRowBase>
IGridController<D,R>IGridController. of(IGrid owner, GroupsModel<D,G,F> model)
Returns the controller instance with the givengrid
static <D,G,F,R extends IRowBase>
IGridController<D,R>IGridController. of(IGrid owner, GroupsModel<D,G,F> model, CheckedFunction3<D,java.lang.Integer,GroupingInfo,R> renderer)
Returns the controller instance with the givengrid
static <D,G,F,R extends IListitemBase>
IListboxController<D,R>IListboxController. of(IListbox owner, GroupsModel<D,G,F> model)
Returns the controller instance with the givenlistbox
static <D,G,F,R extends IListitemBase>
IListboxController<D,R>IListboxController. of(IListbox owner, GroupsModel<D,G,F> model, CheckedFunction2<D,java.lang.Integer,R> renderer)
Returns the controller instance with the givenlistbox
void
IGridController. setModel(GroupsModel<?,?,?> model)
Sets the groups model for this controller to render.void
IListboxController. setModel(GroupsModel<?,?,?> model)
Sets the groups model for this controller to render. -
Uses of GroupsModel in org.zkoss.zul
Classes in org.zkoss.zul that implement GroupsModel Modifier and Type Class Description class
AbstractGroupsModel<D,H,F,E>
A skeletal implementation forGroupsModel
.class
GroupsModelArray<D,H,F,E>
An array implementation ofGroupsModel
.class
SimpleGroupsModel<D,H,F,E>
A simple implementation ofGroupsModel
.Methods in org.zkoss.zul that return GroupsModel Modifier and Type Method Description <D,G,F>
GroupsModel<D,G,F>Grid. getGroupsModel()
Returns the groups model associated with this grid, or null if this grid is associated with aListModel
or not associated with any list data model.<D,G,F>
GroupsModel<D,G,F>Listbox. getGroupsModel()
Returns the groups model associated with this list box, or null if this list box is associated with aListModel
or not associated with any list data model.Methods in org.zkoss.zul with parameters of type GroupsModel Modifier and Type Method Description void
Grid. setModel(GroupsModel<?,?,?> model)
Sets the groups model associated with this grid.void
Listbox. setModel(GroupsModel<?,?,?> model)
Sets the groups model associated with this list box. -
Uses of GroupsModel in org.zkoss.zul.event
Methods in org.zkoss.zul.event that return GroupsModel Modifier and Type Method Description GroupsModel
GroupsDataEvent. getModel()
Returns the list model that fires this event.Constructors in org.zkoss.zul.event with parameters of type GroupsModel Constructor Description GroupsDataEvent(GroupsModel model, int type, int groupIndex, int index0, int index1)
Constructor. -
Uses of GroupsModel in org.zkoss.zul.impl
Fields in org.zkoss.zul.impl declared as GroupsModel Modifier and Type Field Description protected GroupsModel<D,G,F>
GroupsListModel. _model
Methods in org.zkoss.zul.impl that return GroupsModel Modifier and Type Method Description GroupsModel<D,G,F>
GroupsListModel. getGroupsModel()
Methods in org.zkoss.zul.impl with parameters of type GroupsModel Modifier and Type Method Description static <D,G,F>
GroupsListModel<D,G,F>GroupsListModel. toListModel(GroupsModel<D,G,F> model)
Returns the list model (ListModel
) representing the given groups model.Constructors in org.zkoss.zul.impl with parameters of type GroupsModel Constructor Description GroupsListModel(GroupsModel<D,G,F> model)
-