org.apache.myfaces.tobago.internal.taglib.component
Interface ColumnTagDeclaration
- All Superinterfaces:
- HasBinding, HasCurrentMarkup, HasId, HasIdBindingAndRendered, HasLabel, HasMarkup, HasTip, IsGridLayoutContainer, IsRendered
public interface ColumnTagDeclaration
- extends HasIdBindingAndRendered, HasLabel, HasTip, HasMarkup, HasCurrentMarkup, IsGridLayoutContainer
Renders a UIComponent that represents a single column of data within a
parent UISheet component.
Method Summary |
void |
setAlign(String align)
Alignment of this column. |
void |
setResizable(String resizable)
Flag indicating whether or not the width of this column in a sheet is resizable, by the user. |
void |
setSortable(String sortable)
Flag indicating whether or not this column is sortable. |
void |
setWidth(String width)
The layout token for this column. |
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasId |
setId |
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasBinding |
setBinding |
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsRendered |
setRendered |
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasLabel |
setLabel |
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasTip |
setTip |
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasMarkup |
setMarkup |
setAlign
void setAlign(String align)
- Alignment of this column.
setSortable
void setSortable(String sortable)
- Flag indicating whether or not this column is sortable.
To make a column sortable the data of the sheet must be one of
java.util.List
or Object[]
.
setResizable
void setResizable(String resizable)
- Flag indicating whether or not the width of this column in a sheet is resizable, by the user.
setWidth
void setWidth(String width)
- The layout token for this column.
Allowd layout tokens ('*', '<x>*', '<x>px' or '<x>%').
Where '*' is equvalent to '1*'.
Copyright © 2002-2014 The Apache Software Foundation. All Rights Reserved.