Class Grid.Column
- java.lang.Object
-
- com.vaadin.v7.ui.Grid.Column
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- Grid
@Deprecated public static class Grid.Column extends Object implements Serializable
Deprecated.A column in the grid. Can be obtained by callingGrid.getColumn(Object propertyId).- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected voidcheckColumnIsAttached()Deprecated.Checks if column is attached and throws anIllegalStateExceptionif it is not.Grid.ColumnclearExpandRatio()Deprecated.Clears the expand ratio for this column.Converter<?,?>getConverter()Deprecated.Returns the converter instance used by this column.Field<?>getEditorField()Deprecated.Returns the editor field used to edit the properties in this column when the item editor is active.intgetExpandRatio()Deprecated.Returns the column's expand ratio.StringgetHeaderCaption()Deprecated.Returns the caption of the header.StringgetHidingToggleCaption()Deprecated.Gets the caption of the hiding toggle for this column.doublegetMaximumWidth()Deprecated.Returns the maximum width for this column.doublegetMinimumWidth()Deprecated.Return the minimum width for this column.ObjectgetPropertyId()Deprecated.Returns the property id for the backing property of this Column.Renderer<?>getRenderer()Deprecated.Returns the renderer instance used by this column.doublegetWidth()Deprecated.Returns the width (in pixels).booleanisEditable()Deprecated.Returns whether the properties corresponding to this column should be editable when the item editor is active.booleanisHidable()Deprecated.Returns whether this column can be hidden by the user.booleanisHidden()Deprecated.Returns whether this column is hidden.booleanisResizable()Deprecated.Returns whether this column can be resized by the user.booleanisSortable()Deprecated.Returns whether the user can sort the grid by this column.booleanisWidthUndefined()Deprecated.Returns whether this column has an undefined width.protected voidreadDesign(org.jsoup.nodes.Element design, DesignContext designContext)Deprecated.Reads the design attributes for this column from given element.Grid.ColumnsetConverter(Converter<?,?> converter)Deprecated.Sets the converter used to convert from the property value type to the renderer presentation type.Grid.ColumnsetEditable(boolean editable)Deprecated.Sets whether the properties corresponding to this column should be editable when the item editor is active.Grid.ColumnsetEditorField(Field<?> editor)Deprecated.Sets the field component used to edit the properties in this column when the item editor is active.Grid.ColumnsetExpandRatio(int expandRatio)Deprecated.Sets the ratio with which the column expands.Grid.ColumnsetHeaderCaption(String caption)Deprecated.Sets the caption of the header.Grid.ColumnsetHidable(boolean hidable)Deprecated.Sets whether this column can be hidden by the user.Grid.ColumnsetHidden(boolean hidden)Deprecated.Hides or shows the column.Grid.ColumnsetHidingToggleCaption(String hidingToggleCaption)Deprecated.Sets the caption of the hiding toggle for this column.Grid.ColumnsetLastFrozenColumn()Deprecated.Sets this column as the last frozen column in its grid.Grid.ColumnsetMaximumWidth(double pixels)Deprecated.Sets the maximum width for this column.Grid.ColumnsetMinimumWidth(double pixels)Deprecated.Sets the minimum width for this column.Grid.ColumnsetRenderer(Renderer<?> renderer)Deprecated.Sets the renderer for this column.<T> Grid.ColumnsetRenderer(Renderer<T> renderer, Converter<? extends T,?> converter)Deprecated.Sets the renderer for this column and the converter used to convert from the property value type to the renderer presentation type.Grid.ColumnsetResizable(boolean resizable)Deprecated.Sets whether this column can be resized by the user.Grid.ColumnsetSortable(boolean sortable)Deprecated.Sets whether this column is sortable by the user.Grid.ColumnsetWidth(double pixelWidth)Deprecated.Sets the width (in pixels).Grid.ColumnsetWidthUndefined()Deprecated.Marks the column width as undefined.StringtoString()Deprecated.protected voidwriteDesign(org.jsoup.nodes.Element design, DesignContext designContext)Deprecated.Writes the design attributes for this column into given element.
-
-
-
Method Detail
-
getPropertyId
public Object getPropertyId()
Deprecated.Returns the property id for the backing property of this Column.- Returns:
- property id
-
getHeaderCaption
public String getHeaderCaption() throws IllegalStateException
Deprecated.Returns the caption of the header. By default the header caption is the property id of the column.- Returns:
- the text in the default row of header.
- Throws:
IllegalStateException- if the column no longer is attached to the grid
-
setHeaderCaption
public Grid.Column setHeaderCaption(String caption) throws IllegalStateException
Deprecated.Sets the caption of the header. This caption is also used as the hiding toggle caption, unless it is explicitly set viasetHidingToggleCaption(String).- Parameters:
caption- the text to show in the caption- Returns:
- the column itself
- Throws:
IllegalStateException- if the column is no longer attached to any grid
-
getHidingToggleCaption
public String getHidingToggleCaption() throws IllegalStateException
Deprecated.Gets the caption of the hiding toggle for this column.- Returns:
- the caption for the hiding toggle for this column
- Throws:
IllegalStateException- if the column is no longer attached to any grid- Since:
- 7.5.0
- See Also:
setHidingToggleCaption(String)
-
setHidingToggleCaption
public Grid.Column setHidingToggleCaption(String hidingToggleCaption) throws IllegalStateException
Deprecated.Sets the caption of the hiding toggle for this column. Shown in the toggle for this column in the grid's sidebar when the column ishidable.The default value is
null, and in that case the column'sheader captionis used.NOTE: setting this to empty string might cause the hiding toggle to not render correctly.
- Parameters:
hidingToggleCaption- the text to show in the column hiding toggle- Returns:
- the column itself
- Throws:
IllegalStateException- if the column is no longer attached to any grid- Since:
- 7.5.0
-
getWidth
public double getWidth() throws IllegalStateExceptionDeprecated.Returns the width (in pixels). By default a column is 100px wide.- Returns:
- the width in pixels of the column
- Throws:
IllegalStateException- if the column is no longer attached to any grid
-
setWidth
public Grid.Column setWidth(double pixelWidth) throws IllegalStateException, IllegalArgumentException
Deprecated.Sets the width (in pixels).This overrides any configuration set by any of
setExpandRatio(int),setMinimumWidth(double)orsetMaximumWidth(double).- Parameters:
pixelWidth- the new pixel width of the column- Returns:
- the column itself
- Throws:
IllegalStateException- if the column is no longer attached to any gridIllegalArgumentException- thrown if pixel width is less than zero
-
isWidthUndefined
public boolean isWidthUndefined()
Deprecated.Returns whether this column has an undefined width.- Returns:
- whether the width is undefined
- Throws:
IllegalStateException- if the column is no longer attached to any grid- Since:
- 7.6
-
setWidthUndefined
public Grid.Column setWidthUndefined()
Deprecated.Marks the column width as undefined. An undefined width means the grid is free to resize the column based on the cell contents and available space in the grid.- Returns:
- the column itself
-
checkColumnIsAttached
protected void checkColumnIsAttached() throws IllegalStateExceptionDeprecated.Checks if column is attached and throws anIllegalStateExceptionif it is not.- Throws:
IllegalStateException- if the column is no longer attached to any grid
-
setLastFrozenColumn
public Grid.Column setLastFrozenColumn()
Deprecated.Sets this column as the last frozen column in its grid.- Returns:
- the column itself
- Throws:
IllegalArgumentException- if the column is no longer attached to any grid- See Also:
Grid.setFrozenColumnCount(int)
-
setRenderer
public Grid.Column setRenderer(Renderer<?> renderer)
Deprecated.Sets the renderer for this column.If a suitable converter isn't defined explicitly, the session converter factory is used to find a compatible converter.
- Parameters:
renderer- the renderer to use- Returns:
- the column itself
- Throws:
IllegalArgumentException- if no compatible converter could be found- See Also:
VaadinSession.getConverterFactory(),ConverterUtil.getConverter(Class, Class, VaadinSession),setConverter(Converter)
-
setRenderer
public <T> Grid.Column setRenderer(Renderer<T> renderer, Converter<? extends T,?> converter)
Deprecated.Sets the renderer for this column and the converter used to convert from the property value type to the renderer presentation type.- Parameters:
renderer- the renderer to use, cannot be nullconverter- the converter to use- Returns:
- the column itself
- Throws:
IllegalArgumentException- if the renderer is already associated with a grid column
-
setConverter
public Grid.Column setConverter(Converter<?,?> converter) throws IllegalArgumentException
Deprecated.Sets the converter used to convert from the property value type to the renderer presentation type.- Parameters:
converter- the converter to use, ornullto not use any converters- Returns:
- the column itself
- Throws:
IllegalArgumentException- if the types are not compatible
-
getRenderer
public Renderer<?> getRenderer()
Deprecated.Returns the renderer instance used by this column.- Returns:
- the renderer
-
getConverter
public Converter<?,?> getConverter()
Deprecated.Returns the converter instance used by this column.- Returns:
- the converter
-
setSortable
public Grid.Column setSortable(boolean sortable)
Deprecated.Sets whether this column is sortable by the user. The grid can be sorted by a sortable column by clicking or tapping the column's default header. Programmatic sorting using the Grid#sort methods is not affected by this setting.- Parameters:
sortable-trueif the user should be able to sort the column,falseotherwise- Returns:
- the column itself
- Throws:
IllegalStateException- if the data source of the Grid does not implementContainer.SortableIllegalStateException- if the data source does not support sorting by the property associated with this column
-
isSortable
public boolean isSortable()
Deprecated.Returns whether the user can sort the grid by this column.Note: it is possible to sort by this column programmatically using the Grid#sort methods regardless of the returned value.
- Returns:
trueif the column is sortable by the user,falseotherwise
-
setExpandRatio
public Grid.Column setExpandRatio(int expandRatio) throws IllegalStateException
Deprecated.Sets the ratio with which the column expands.By default, all columns expand equally (treated as if all of them had an expand ratio of 1). Once at least one column gets a defined expand ratio, the implicit expand ratio is removed, and only the defined expand ratios are taken into account.
If a column has a defined width (
setWidth(double)), it overrides this method's effects.Example: A grid with three columns, with expand ratios 0, 1 and 2, respectively. The column with a ratio of 0 is exactly as wide as its contents requires. The column with a ratio of 1 is as wide as it needs, plus a third of any excess space, because we have 3 parts total, and this column reserves only one of those. The column with a ratio of 2, is as wide as it needs to be, plus two thirds of the excess width.
- Parameters:
expandRatio- the expand ratio of this column.0to not have it expand at all. A negative number to clear the expand value.- Throws:
IllegalStateException- if the column is no longer attached to any grid- See Also:
setWidth(double)
-
getExpandRatio
public int getExpandRatio()
Deprecated.Returns the column's expand ratio.- Returns:
- the column's expand ratio
- See Also:
setExpandRatio(int)
-
clearExpandRatio
public Grid.Column clearExpandRatio() throws IllegalStateException
Deprecated.Clears the expand ratio for this column.Equal to calling
setExpandRatio(-1)- Throws:
IllegalStateException- if the column is no longer attached to any grid
-
setMinimumWidth
public Grid.Column setMinimumWidth(double pixels) throws IllegalStateException
Deprecated.Sets the minimum width for this column.This defines the minimum guaranteed pixel width of the column when it is set to expand.
- Throws:
IllegalStateException- if the column is no longer attached to any grid- See Also:
setExpandRatio(int)
-
getMinimumWidth
public double getMinimumWidth()
Deprecated.Return the minimum width for this column.- Returns:
- the minimum width for this column
- See Also:
setMinimumWidth(double)
-
setMaximumWidth
public Grid.Column setMaximumWidth(double pixels)
Deprecated.Sets the maximum width for this column.This defines the maximum allowed pixel width of the column when it is set to expand.
- Parameters:
pixels- the maximum width- Throws:
IllegalStateException- if the column is no longer attached to any grid- See Also:
setExpandRatio(int)
-
getMaximumWidth
public double getMaximumWidth()
Deprecated.Returns the maximum width for this column.- Returns:
- the maximum width for this column
- See Also:
setMaximumWidth(double)
-
setEditable
public Grid.Column setEditable(boolean editable)
Deprecated.Sets whether the properties corresponding to this column should be editable when the item editor is active. By default columns are editable.Values in non-editable columns are currently not displayed when the editor is active, but this will probably change in the future. They are not automatically assigned an editor field and, if one is manually assigned, it is not used. Columns that cannot (or should not) be edited even in principle should be set non-editable.
- Parameters:
editable-trueif this column should be editable,falseotherwise- Returns:
- this column
- Throws:
IllegalStateException- if the editor is currently active- See Also:
Grid.editItem(Object),Grid.isEditorActive()
-
isEditable
public boolean isEditable()
Deprecated.Returns whether the properties corresponding to this column should be editable when the item editor is active.- Returns:
trueif this column is editable,falseotherwise- See Also:
Grid.editItem(Object),setEditable(boolean)
-
setEditorField
public Grid.Column setEditorField(Field<?> editor)
Deprecated.Sets the field component used to edit the properties in this column when the item editor is active. If an item has not been set, then the binding is postponed until the item is set usingGrid.editItem(Object).Setting the field to
nullclears any previously set field, causing a new field to be created the next time the item editor is opened.- Parameters:
editor- the editor field- Returns:
- this column
-
getEditorField
public Field<?> getEditorField()
Deprecated.Returns the editor field used to edit the properties in this column when the item editor is active. Returns null if the column is noteditable.When
editItemis called, fields are automatically created and bound for any unbound properties.Getting a field before the editor has been opened depends on special support from the
FieldGroupin use. Using this method with a user-providedFieldGroupmight causeBindExceptionto be thrown.- Returns:
- the bound field; or
nullif the respective column is not editable - Throws:
IllegalArgumentException- if there is no column for the provided property idFieldGroup.BindException- if no field has been configured and there is a problem building or binding
-
setHidden
public Grid.Column setHidden(boolean hidden)
Deprecated.Hides or shows the column. By default columns are visible before explicitly hiding them.- Parameters:
hidden-trueto hide the column,falseto show- Returns:
- this column
- Since:
- 7.5.0
-
isHidden
public boolean isHidden()
Deprecated.Returns whether this column is hidden. Default isfalse.- Returns:
trueif the column is currently hidden,falseotherwise- Since:
- 7.5.0
-
setHidable
public Grid.Column setHidable(boolean hidable)
Deprecated.Sets whether this column can be hidden by the user. Hidable columns can be hidden and shown via the sidebar menu.- Parameters:
hidable-trueif the column may be hidable by the user via UI interaction- Returns:
- this column
- Since:
- 7.5.0
-
isHidable
public boolean isHidable()
Deprecated.Returns whether this column can be hidden by the user. Default isfalse.Note: the column can be programmatically hidden using
setHidden(boolean)regardless of the returned value.- Returns:
trueif the user can hide the column,falseif not- Since:
- 7.5.0
-
setResizable
public Grid.Column setResizable(boolean resizable)
Deprecated.Sets whether this column can be resized by the user.- Parameters:
resizable-trueif this column should be resizable,falseotherwise- Since:
- 7.6
-
isResizable
public boolean isResizable()
Deprecated.Returns whether this column can be resized by the user. Default istrue.Note: the column can be programmatically resized using
setWidth(double)andsetWidthUndefined()regardless of the returned value.- Returns:
trueif this column is resizable,falseotherwise- Since:
- 7.6
-
writeDesign
protected void writeDesign(org.jsoup.nodes.Element design, DesignContext designContext)Deprecated.Writes the design attributes for this column into given element.- Parameters:
design- Element to write attributes intodesignContext- the design context- Since:
- 7.5.0
-
readDesign
protected void readDesign(org.jsoup.nodes.Element design, DesignContext designContext)Deprecated.Reads the design attributes for this column from given element.- Parameters:
design- Element to read attributes fromdesignContext- the design context- Since:
- 7.5.0
-
-