Uses of Class
com.inmethod.grid.column.AbstractColumn
-
Packages that use AbstractColumn Package Description com.inmethod.grid.column com.inmethod.grid.column.editable com.inmethod.grid.column.tree com.inmethod.grid.treegrid -
-
Uses of AbstractColumn in com.inmethod.grid.column
Subclasses of AbstractColumn in com.inmethod.grid.column Modifier and Type Class Description classAbstractLightWeightColumn<M,I,S>Convenience implementation ofIGridColumn.classCheckBoxColumn<M,I,S>Column that allows a row in grid to be selected.classLinkColumn<M,I,S>Abstract column to display links in aDataGridclassPageLinkColumn<M,I,S>Displays a Link in the DataGrid to an Internal Wicket PageclassPropertyColumn<M,I,P,S>A lightweight column that displays a property of row object specified by an property expression.classWicketColumnAdapter<M,I,S>Adapter that allows usingDataTablecolumns from wicket extensions in anAbstractGrid.Methods in com.inmethod.grid.column that return AbstractColumn Modifier and Type Method Description AbstractColumn<M,I,S>AbstractColumn. setHeaderTooltipModel(IModel<String> headerTooltipModel)Sets the model for header tooltip.AbstractColumn<M,I,S>AbstractColumn. setInitialSize(int initialSize)Sets the initial size for this column.AbstractColumn<M,I,S>AbstractColumn. setMaxSize(int maxSize)Sets the maximal size of this column.AbstractColumn<M,I,S>AbstractColumn. setMinSize(int minSize)Sets the minimal size of this column.AbstractColumn<M,I,S>AbstractColumn. setReorderable(boolean reorderable)Sets whether the user will be able to drag and reorder this column (true by default).AbstractColumn<M,I,S>AbstractColumn. setResizable(boolean resizable)Sets whether the user will be able to resize this column (true by default).AbstractColumn<M,I,S>AbstractColumn. setSizeUnit(SizeUnit sizeUnit)Sets the size unit for this column.AbstractColumn<M,I,S>AbstractColumn. setWrapText(boolean wrapText)Sets whether the text in column will be wrapped when it is too long to fit the column (falseby default). -
Uses of AbstractColumn in com.inmethod.grid.column.editable
Subclasses of AbstractColumn in com.inmethod.grid.column.editable Modifier and Type Class Description classAddDeleteColumn<M,I,S>Column that Displays Confirm, Cancel and Delete buttonsclassDropDownChoiceColumn<M,I,T,S>Property column that uses aDropDownChoicePanelas cell component when the item is selected.classEditableCheckBoxColumn<M,I,S>Property column that uses aCheckBoxPanelas cell component when the item is selected.classEditableLocalDateColumn<M,I,S>Property column that uses aLocalDateTextFieldPanelas cell component when the item is selected.classEditablePropertyColumn<M,I,P,S>Property column that uses aTextFieldPanelas cell component when the item is selected.classEditablePropertyTreeColumn<T extends TreeModel & Serializable,I extends TreeNode & Serializable,P,S>Tree column that allows to edit the property when item is selected.classSubmitCancelColumn<M,I,S>Methods in com.inmethod.grid.column.editable that return AbstractColumn Modifier and Type Method Description AbstractColumn<M,I,S>EditableCellPanel. getColumn()Constructors in com.inmethod.grid.column.editable with parameters of type AbstractColumn Constructor Description CheckBoxPanel(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.tree Modifier and Type Class Description classAbstractTreeColumn<T extends TreeModel & Serializable,I extends TreeNode & Serializable,S>Base class forTreeGridcolumn that contains the actual tree.classPropertyTreeColumn<T extends TreeModel & Serializable,I extends TreeNode & Serializable,P,S>Simple tree column that displays a property ofTreeNodeinstance specified by the property expression. -
Uses of AbstractColumn in com.inmethod.grid.treegrid
Subclasses of AbstractColumn in com.inmethod.grid.treegrid Modifier and Type Class Description classBaseTreeColumn<T extends TreeModel & Serializable,I extends TreeNode & Serializable,S>INTERNAL
-