Uses of Class
org.apache.wicket.markup.html.list.ListItem
-
Packages that use ListItem Package Description org.apache.wicket.extensions.breadcrumb Package for working with bread crumb components.org.apache.wicket.extensions.markup.html.repeater.tree.nested org.apache.wicket.markup.html.list List components for tabular data and such.org.apache.wicket.markup.html.panel Panel components.org.apache.wicket.markup.repeater -
-
Uses of ListItem in org.apache.wicket.extensions.breadcrumb
Methods in org.apache.wicket.extensions.breadcrumb with parameters of type ListItem Modifier and Type Method Description protected void
BreadCrumbBar.BreadCrumbsListView. populateItem(ListItem<IBreadCrumbParticipant> item)
-
Uses of ListItem in org.apache.wicket.extensions.markup.html.repeater.tree.nested
Subclasses of ListItem 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 ListItem in org.apache.wicket.markup.html.list
Subclasses of ListItem in org.apache.wicket.markup.html.list Modifier and Type Class Description class
OddEvenListItem<T>
ListItem that addsclass="odd"
orclass="even"
html attribute depending on its index.Methods in org.apache.wicket.markup.html.list that return ListItem Modifier and Type Method Description protected ListItem<T>
ListView. newItem(int index, IModel<T> itemModel)
Create a new ListItem for list item at index.Methods in org.apache.wicket.markup.html.list with parameters of type ListItem Modifier and Type Method Description Link<Void>
ListView. moveDownLink(String id, ListItem<T> item)
Returns a link that will move the given item "down" (towards the end) in the listView.Link<Void>
ListView. moveUpLink(String id, ListItem<T> item)
Returns a link that will move the given item "up" (towards the beginning) in the listView.protected void
ListView. onBeginPopulateItem(ListItem<T> item)
Comes handy for ready made ListView based components which must implement populateItem() but you don't want to lose compile time error checking reminding the user to implement abstract populateItem().protected abstract void
ListView. populateItem(ListItem<T> item)
Populate a given item.Link<Void>
ListView. removeLink(String id, ListItem<T> item)
Returns a link that will remove this ListItem from the ListView that holds it.protected void
ListView. renderItem(ListItem<?> item)
Render a single item. -
Uses of ListItem in org.apache.wicket.markup.html.panel
Methods in org.apache.wicket.markup.html.panel that return ListItem Modifier and Type Method Description protected ListItem<FeedbackMessage>
FeedbackPanel. newMessageItem(int index, IModel<FeedbackMessage> itemModel)
Allows to define the listItem to use in the feedback's message list. -
Uses of ListItem in org.apache.wicket.markup.repeater
Subclasses of ListItem in org.apache.wicket.markup.repeater Modifier and Type Class Description class
Item<T>
Container that holds components in a RefreshingView.class
OddEvenItem<T>
Item that sets class="even" or class="odd" attributes based on its index
-