Uses of Class
org.apache.wicket.markup.html.list.ListView
-
Packages that use ListView Package Description org.apache.wicket.markup.html.list List components for tabular data and such. -
-
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 classPageableListView<T>PageableListView is similar to ListView but provides in addition pageable views.classPropertyListView<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(java.util.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
-