Uses of Class
org.apache.wicket.markup.repeater.Item
-
-
Uses of Item in org.apache.wicket.extensions.ajax.markup.html.repeater.data.table
Methods in org.apache.wicket.extensions.ajax.markup.html.repeater.data.table that return Item Modifier and Type Method Description protected Item<T>
AjaxFallbackDefaultDataTable. newRowItem(String id, int index, IModel<T> model)
-
Uses of Item in org.apache.wicket.extensions.markup.html.repeater.data.grid
Methods in org.apache.wicket.extensions.markup.html.repeater.data.grid that return Item Modifier and Type Method Description protected Item<ICellPopulator<T>>
AbstractDataGridView. newCellItem(String id, int index, IModel<ICellPopulator<T>> model)
Factory method for Item container that represents a cell.protected Item<T>
AbstractDataGridView. newItem(String id, int index, IModel<T> model)
protected Item<T>
AbstractDataGridView. newRowItem(String id, int index, IModel<T> model)
Factory method for Item container that represents a row.Methods in org.apache.wicket.extensions.markup.html.repeater.data.grid with parameters of type Item Modifier and Type Method Description protected void
AbstractDataGridView. populateItem(Item<T> item)
void
ICellPopulator. populateItem(Item<ICellPopulator<T>> cellItem, String componentId, IModel<T> rowModel)
Method used to populate a cell in theDataGridView
Implementation MUST add a component to the cellItem using the component id provided by componentId argument, otherwise a WicketRuntimeException will be thrownvoid
PropertyPopulator. populateItem(Item<ICellPopulator<T>> cellItem, String componentId, IModel<T> rowModel)
-
Uses of Item in org.apache.wicket.extensions.markup.html.repeater.data.table
Methods in org.apache.wicket.extensions.markup.html.repeater.data.table that return Item Modifier and Type Method Description protected Item<IColumn<T,S>>
DataTable. newCellItem(String id, int index, IModel<IColumn<T,S>> model)
Factory method for Item container that represents a cell in the underlying DataGridViewprotected Item<T>
DataTable. newRowItem(String id, int index, IModel<T> model)
Factory method for Item container that represents a row in the underlying DataGridViewprotected Item<T>
DefaultDataTable. newRowItem(String id, int index, IModel<T> model)
Methods in org.apache.wicket.extensions.markup.html.repeater.data.table with parameters of type Item Modifier and Type Method Description void
LambdaColumn. populateItem(Item<ICellPopulator<T>> item, String componentId, IModel<T> rowModel)
void
PropertyColumn. populateItem(Item<ICellPopulator<T>> item, String componentId, IModel<T> rowModel)
Implementation of populateItem which adds a label to the cell whose model is the provided property expression evaluated against rowModelObject -
Uses of Item in org.apache.wicket.extensions.markup.html.repeater.data.table.export
Methods in org.apache.wicket.extensions.markup.html.repeater.data.table.export with parameters of type Item Modifier and Type Method Description void
AbstractExportableColumn. populateItem(Item<ICellPopulator<T>> cellItem, String componentId, IModel<T> rowModel)
Populated the data for this column in the row into thecellItem
. -
Uses of Item in org.apache.wicket.extensions.markup.html.repeater.tree
Methods in org.apache.wicket.extensions.markup.html.repeater.tree that return Item Modifier and Type Method Description protected Item<T>
DefaultTableTree. newRowItem(String id, int index, IModel<T> node)
Creates anOddEvenItem
.protected Item<T>
TableTree. newRowItem(String id, int index, IModel<T> model)
Create a row item for the nestedDataTable
. -
Uses of Item in org.apache.wicket.extensions.markup.html.repeater.tree.nested
Subclasses of Item in org.apache.wicket.extensions.markup.html.repeater.tree.nested Modifier and Type Class Description class
BranchItem<T>
A branch is a container for a single node and its children inside aSubtree
. -
Uses of Item in org.apache.wicket.extensions.markup.html.repeater.tree.table
Methods in org.apache.wicket.extensions.markup.html.repeater.tree.table with parameters of type Item Modifier and Type Method Description void
TreeColumn. populateItem(Item<ICellPopulator<T>> cellItem, String componentId, IModel<T> rowModel)
-
Uses of Item in org.apache.wicket.markup.repeater
Subclasses of Item in org.apache.wicket.markup.repeater Modifier and Type Class Description class
OddEvenItem<T>
Item that sets class="even" or class="odd" attributes based on its indexMethods in org.apache.wicket.markup.repeater that return Item Modifier and Type Method Description Item<T>
IItemFactory. newItem(int index, IModel<T> model)
Factory method for instances of Item.protected Item<T>
RefreshingView. newItem(String id, int index, IModel<T> model)
Factory method for Item container.Methods in org.apache.wicket.markup.repeater that return types with arguments of type Item Modifier and Type Method Description static Comparator<Item<?>>
Item.IndexComparator. getInstance()
<T> Iterator<Item<T>>
DefaultItemReuseStrategy. getItems(IItemFactory<T> factory, Iterator<IModel<T>> newModels, Iterator<Item<T>> existingItems)
<T> Iterator<Item<T>>
IItemReuseStrategy. getItems(IItemFactory<T> factory, Iterator<IModel<T>> newModels, Iterator<Item<T>> existingItems)
Returns an iterator over items that will be added to the view.Iterator<Item<T>>
RefreshingView. getItems()
<T> Iterator<Item<T>>
ReuseIfModelsEqualStrategy. getItems(IItemFactory<T> factory, Iterator<IModel<T>> newModels, Iterator<Item<T>> existingItems)
Methods in org.apache.wicket.markup.repeater with parameters of type Item Modifier and Type Method Description int
Item.IndexComparator. compare(Item<?> lhs, Item<?> rhs)
protected abstract void
RefreshingView. populateItem(Item<T> item)
Populate the given Item container.Method parameters in org.apache.wicket.markup.repeater with type arguments of type Item Modifier and Type Method Description protected void
RefreshingView. addItems(Iterator<Item<T>> items)
Add items to the view. -
Uses of Item in org.apache.wicket.markup.repeater.data
Methods in org.apache.wicket.markup.repeater.data that return Item Modifier and Type Method Description protected Item<T>
GridView. newEmptyItem(String id, int index)
Create a Item which represents an empty cell (there is no model for it in the DataProvider)protected Item<?>
GridView. newRowItem(String id, int index)
Create a new Item which will hold a row.Item<T>
GridView.ItemsIterator. next()
Methods in org.apache.wicket.markup.repeater.data that return types with arguments of type Item Modifier and Type Method Description Iterator<Item<T>>
GridView. getItems()
Methods in org.apache.wicket.markup.repeater.data with parameters of type Item Modifier and Type Method Description protected abstract void
GridView. populateEmptyItem(Item<T> item)
Add component to an Item for which there is no model anymore and is shown in a cellMethod parameters in org.apache.wicket.markup.repeater.data with type arguments of type Item Modifier and Type Method Description protected void
GridView. addItems(Iterator<Item<T>> items)
-