Uses of Class
org.apache.wicket.markup.html.list.ListView
-
Packages that use ListView Package Description org.apache.wicket.extensions.breadcrumb Package for working with bread crumb components.org.apache.wicket.markup.html.list List components for tabular data and such. -
-
Uses of ListView in org.apache.wicket.extensions.breadcrumb
Subclasses of ListView in org.apache.wicket.extensions.breadcrumb Modifier and Type Class Description protected class
BreadCrumbBar.BreadCrumbsListView
List view for rendering the bread crumbs. -
Uses of ListView in org.apache.wicket.markup.html.list
Subclasses of ListView in org.apache.wicket.markup.html.list Modifier and Type Class Description class
PageableListView<T>
PageableListView is similar to ListView but provides in addition pageable views.class
PropertyListView<T>
Simple ListVew subclass that wraps its item models in aCompoundPropertyModel
.Methods in org.apache.wicket.markup.html.list that return ListView Modifier and Type Method Description ListView<T>
ListView. setList(List<T> list)
Sets the model as the provided list and removes all children, so that the next render will be using the contents of the model.ListView<T>
ListView. setReuseItems(boolean reuseItems)
If true re-rendering the list view is more efficient if the windows doesn't get changed at all or if it gets scrolled (compared to paging).ListView<T>
ListView. setStartIndex(int startIndex)
Set the index of the first item to renderListView<T>
PageableListView. setStartIndex(int startIndex)
Prevent users from accidentally using it.ListView<T>
ListView. setViewSize(int size)
Define the maximum number of items to render.ListView<T>
PageableListView. setViewSize(int size)
Prevent users from accidentally using it.Constructors in org.apache.wicket.markup.html.list with parameters of type ListView Constructor Description ListItemModel(ListView<T> listView, int index)
Construct
-