Interface ItemTask<T>
- Type Parameters:
T
- The model object type
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface for handling item tasks.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
click
(org.apache.wicket.markup.repeater.Item<T> rowItem, org.apache.wicket.markup.repeater.Item<org.apache.wicket.extensions.markup.html.repeater.data.grid.ICellPopulator<T>> cellItem, org.apache.wicket.ajax.AjaxRequestTarget target) Handles click action on the item.
-
Method Details
-
click
void click(org.apache.wicket.markup.repeater.Item<T> rowItem, org.apache.wicket.markup.repeater.Item<org.apache.wicket.extensions.markup.html.repeater.data.grid.ICellPopulator<T>> cellItem, org.apache.wicket.ajax.AjaxRequestTarget target) Handles click action on the item.- Parameters:
item
- the rowItemItem
item
- the cellItemItem
target
- theAjaxRequestTarget
that initiated the action
-