Uses of Class
com.inmethod.grid.column.AbstractColumn
Packages that use AbstractColumn
Package
Description
-
Uses of AbstractColumn in com.inmethod.grid.column
Subclasses of AbstractColumn in com.inmethod.grid.columnModifier and TypeClassDescriptionclass
AbstractLightWeightColumn<M,
I, S> Convenience implementation ofIGridColumn
.class
CheckBoxColumn<M,
I, S> Column that allows a row in grid to be selected.class
LinkColumn<M,
I, S> Abstract column to display links in aDataGrid
class
PageLinkColumn<M,
I, S> Displays a Link in the DataGrid to an Internal Wicket Pageclass
PropertyColumn<M,
I, P, S> A lightweight column that displays a property of row object specified by an property expression.class
WicketColumnAdapter<M,
I, S> Adapter that allows usingDataTable
columns from wicket extensions in anAbstractGrid
.Methods in com.inmethod.grid.column that return AbstractColumnModifier and TypeMethodDescriptionAbstractColumn.setHeaderTooltipModel
(IModel<String> headerTooltipModel) Sets the model for header tooltip.AbstractColumn.setInitialSize
(int initialSize) Sets the initial size for this column.AbstractColumn.setMaxSize
(int maxSize) Sets the maximal size of this column.AbstractColumn.setMinSize
(int minSize) Sets the minimal size of this column.AbstractColumn.setReorderable
(boolean reorderable) Sets whether the user will be able to drag and reorder this column (true by default).AbstractColumn.setResizable
(boolean resizable) Sets whether the user will be able to resize this column (true by default).AbstractColumn.setSizeUnit
(SizeUnit sizeUnit) Sets the size unit for this column.AbstractColumn.setWrapText
(boolean wrapText) Sets whether the text in column will be wrapped when it is too long to fit the column (false
by default). -
Uses of AbstractColumn in com.inmethod.grid.column.editable
Subclasses of AbstractColumn in com.inmethod.grid.column.editableModifier and TypeClassDescriptionclass
AddDeleteColumn<M,
I, S> Column that Displays Confirm, Cancel and Delete buttonsclass
DropDownChoiceColumn<M,
I, T, S> Property column that uses aDropDownChoicePanel
as cell component when the item is selected.class
EditableCheckBoxColumn<M,
I, S> Property column that uses aCheckBoxPanel
as cell component when the item is selected.class
EditableLocalDateColumn<M,
I, S> Property column that uses aLocalDateTextFieldPanel
as cell component when the item is selected.class
EditablePropertyColumn<M,
I, P, S> Property column that uses aTextFieldPanel
as cell component when the item is selected.class
EditablePropertyTreeColumn<T extends TreeModel & Serializable,
I extends TreeNode & Serializable, P, S> Tree column that allows to edit the property when item is selected.class
SubmitCancelColumn<M,
I, S> Methods in com.inmethod.grid.column.editable that return AbstractColumnConstructors in com.inmethod.grid.column.editable with parameters of type AbstractColumnModifierConstructorDescriptionCheckBoxPanel
(String id, IModel<Boolean> model, IModel<I> rowModel, AbstractColumn<M, I, S> column) ConstructorDropDownChoicePanel
(String id, IModel<P> model, IModel<I> rowModel, AbstractColumn<M, I, S> column, IModel<? extends List<P>> choices, IChoiceRenderer<P> renderer) ConstructorEditableCellPanel
(String id, AbstractColumn<M, I, S> column, IModel<I> rowModel) LocalDateTextFieldPanel
(String id, IModel<LocalDate> date, IModel<I> rowModel, AbstractColumn<M, I, S> column, FormatStyle style) ConstructorTextFieldPanel
(String id, IModel<P> model, IModel<I> rowModel, AbstractColumn<M, I, S> column) Constructor -
Uses of AbstractColumn in com.inmethod.grid.column.tree
Subclasses of AbstractColumn in com.inmethod.grid.column.treeModifier and TypeClassDescriptionclass
AbstractTreeColumn<T extends TreeModel & Serializable,
I extends TreeNode & Serializable, S> Base class forTreeGrid
column that contains the actual tree.class
PropertyTreeColumn<T extends TreeModel & Serializable,
I extends TreeNode & Serializable, P, S> Simple tree column that displays a property ofTreeNode
instance specified by the property expression. -
Uses of AbstractColumn in com.inmethod.grid.treegrid
Subclasses of AbstractColumn in com.inmethod.grid.treegridModifier and TypeClassDescriptionclass
BaseTreeColumn<T extends TreeModel & Serializable,
I extends TreeNode & Serializable, S> INTERNAL