Package org.zkoss.zkplus.databind
Interface CollectionItem
-
- All Known Subinterfaces:
CollectionItemExt
public interface CollectionItem
Deprecated.As of release 7.0.0, replace with new ZK binding.The CollectionItem is used byDataBinder
and provides an interface for collection component to interact with the DataBinder such as Grid or Listbox.- Since:
- 3.0.0
- Author:
- jumperchen
- See Also:
DataBinder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Component
getComponentAtIndexByOwner(Component comp, int index)
Deprecated.Returns the component by the index in the comp's children.Component
getComponentCollectionOwner(Component comp)
Deprecated.Returns the component's owner.ListModel
getModelByOwner(Component comp)
Deprecated.Returns the component model asListModel
void
setupBindingRenderer(Component comp, DataBinder binder)
Deprecated.Sets the binding renderer for the template component such as Listitem or Row.
-
-
-
Method Detail
-
getComponentCollectionOwner
Component getComponentCollectionOwner(Component comp)
Deprecated.Returns the component's owner.
For example: if this comp is a Row component then this method will return the associated Grid component of the Row.- Parameters:
comp
- A component as Row or Listitem.- Returns:
- Component the comp's owner.
-
getComponentAtIndexByOwner
Component getComponentAtIndexByOwner(Component comp, int index)
Deprecated.Returns the component by the index in the comp's children.
- Parameters:
comp
- Collection owner component such as Grid.index
- index of the element to return- Returns:
- Component the component at the specified position in the list of comp's children.
-
getModelByOwner
ListModel getModelByOwner(Component comp)
Deprecated.Returns the component model as
ListModel
- Parameters:
comp
- Collection owner component such as Grid.- Returns:
- ListModel
-
setupBindingRenderer
void setupBindingRenderer(Component comp, DataBinder binder)
Deprecated.Sets the binding renderer for the template component such as Listitem or Row.
- Parameters:
comp
- A component such as Row or Listitem.binder
- The associated DataBinder
-
-