Uses of Interface
org.zkoss.zul.ListModel
-
Packages that use ListModel Package Description org.zkoss.zul org.zkoss.zul.event org.zkoss.zul.impl -
-
Uses of ListModel in org.zkoss.zul
Classes in org.zkoss.zul that implement ListModel Modifier and Type Class Description classAbstractListModel<E>A skeletal implementation forListModelandSelectableclassListModelArray<E>classListModelList<E>classListModelMap<K,V>classListModelSet<E>classSimpleListModel<E>A simple implementation ofListModel.Methods in org.zkoss.zul that return ListModel Modifier and Type Method Description <T> ListModel<T>Grid. getListModel()Returns the list model associated with this grid, or null if this grid is associated with aGroupsModelor not associated with any list data model.<T> ListModel<T>Listbox. getListModel()Returns the list model associated with this list box, or null if this list box is associated with aGroupsModelor not associated with any list data model.<T> ListModel<T>Combobox. getModel()Returns the list model associated with this combobox, or null if this combobox is not associated with any list data model.<T> ListModel<T>Grid. getModel()Returns the model associated with this grid, or null if this grid is not associated with any list data model.<T> ListModel<T>Listbox. getModel()Returns the model associated with this list box, or null if this list box is not associated with any list data model.<T> ListModel<T>Radiogroup. getModel()Returns the list model associated with this radiogroup, or null if this radiogroup is not associated with any list data model.<T> ListModel<T>Selectbox. getModel()Returns the model associated with this selectbox, or null if this selectbox is not associated with any list data model.<T> ListModel<T>Tabbox. getModel()Returns the model associated with this selectbox, or null if this selectbox is not associated with any list data model.ListModel<E>ListSubModel. getSubModel(java.lang.Object value, int nRows)Returns the subset of list model data that the subset data is extract from combobox's list model data.ListModel<E>SimpleListModel. getSubModel(java.lang.Object value, int nRows)Returns the subset of the list model data that matches the specified value.static <T> ListModel<T>ListModels. toListSubModel(ListModel<T> model)Returns a proxy instance of the given model that implementsListSubModelandListModelinterface.static <T> ListModel<T>ListModels. toListSubModel(ListModel<T> model, int initRenderCount)Returns a proxy instance of the given model that implementsListSubModelandListModelinterface.static <T> ListModel<T>ListModels. toListSubModel(ListModel<T> model, java.util.Comparator<T> comparator, int nRows)Returns a proxy instance of the given model that implementsListSubModelandListModelinterface.static <T> ListModel<T>ListModels. toListSubModel(ListModel<T> model, java.util.Comparator<T> comparator, int nRows, int initRenderCount)Returns a proxy instance of the given model that implementsListSubModelandListModelinterface.Methods in org.zkoss.zul with parameters of type ListModel Modifier and Type Method Description voidCombobox. setModel(ListModel<?> model)Sets the list model associated with this combobox.voidGrid. setModel(ListModel<?> model)Sets the list model associated with this grid.voidListbox. setModel(ListModel<?> model)Sets the list model associated with this listbox.voidRadiogroup. setModel(ListModel<?> model)Sets the list model associated with this radiogroup.voidSelectbox. setModel(ListModel<?> model)Sets the list model associated with this selectbox.voidTabbox. setModel(ListModel<?> model)Sets the list model associated with this t.static <T> ListModel<T>ListModels. toListSubModel(ListModel<T> model)Returns a proxy instance of the given model that implementsListSubModelandListModelinterface.static <T> ListModel<T>ListModels. toListSubModel(ListModel<T> model, int initRenderCount)Returns a proxy instance of the given model that implementsListSubModelandListModelinterface.static <T> ListModel<T>ListModels. toListSubModel(ListModel<T> model, java.util.Comparator<T> comparator, int nRows)Returns a proxy instance of the given model that implementsListSubModelandListModelinterface.static <T> ListModel<T>ListModels. toListSubModel(ListModel<T> model, java.util.Comparator<T> comparator, int nRows, int initRenderCount)Returns a proxy instance of the given model that implementsListSubModelandListModelinterface. -
Uses of ListModel in org.zkoss.zul.event
Methods in org.zkoss.zul.event that return ListModel Modifier and Type Method Description ListModelListDataEvent. getModel()Returns the list model that fires this event.Constructors in org.zkoss.zul.event with parameters of type ListModel Constructor Description ListDataEvent(ListModel model, int type, int index0, int index1)Constructor. -
Uses of ListModel in org.zkoss.zul.impl
Classes in org.zkoss.zul.impl that implement ListModel Modifier and Type Class Description classGroupsListModel<D,G,F>EncapsulatesGroupsModelas an instance ofListModelsuch that it is easier to handle byListboxandGroup.
-