Uses of Class
ca.corbett.forms.fields.ListSubsetField
Packages that use ListSubsetField
-
Uses of ListSubsetField in ca.corbett.forms.fields
Methods in ca.corbett.forms.fields that return ListSubsetFieldModifier and TypeMethodDescriptionListSubsetField.clearSelection()Clears the current selection - this is equivalent to calling unselectAllItems().ListSubsetField.selectAllItems()Allow callers to programmatically move all items right (select all).ListSubsetField.selectItem(T item) Allow callers to programmatically move an item to the right list (select it).ListSubsetField.selectItems(List<T> itemsToSelect) Programmatically select the given items.ListSubsetField.setAutoSortingEnabled(boolean enabled) Sets whether auto-sorting is enabled for both lists.ListSubsetField.setCellRenderer(ListCellRenderer<T> renderer) You can optionally set a custom cell renderer if your list items have special display requirements.ListSubsetField.setFixedCellWidth(int width) Sets the pixel width of each list cell.ListSubsetField.setItemComparator(Comparator<T> comparator) Sets the comparator used to sort items when they are added to either list.ListSubsetField.setShouldExpand(boolean should) Sets whether this field should expand horizontally to fill available form panel width.ListSubsetField.setVisibleRowCount(int count) Sets the desired visible row count.ListSubsetField.unselectAllItems()Allow callers to programmatically move all items left (unselect all).ListSubsetField.unselectItem(T item) Allow callers to programmatically move an item to the left list (unselect it).