|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.kuali.rice.kns.uif.layout.LayoutManagerBase
org.kuali.rice.kns.uif.layout.GridLayoutManager
public class GridLayoutManager
Layout manager that organizes its components in a table based grid
Items are laid out from left to right (with each item taking up one column) until the configured number of columns is reached. If the item count is greater than the number of columns, a new row will be created to render the remaining items (and so on until all items are placed). Labels for the fields can be pulled out (default) and rendered as a separate column. The manager also supports the column span and row span options for the field items. If not specified the default is 1.
Constructor Summary | |
---|---|
GridLayoutManager()
|
Method Summary | |
---|---|
String |
getConditionalNumberOfColumns()
Conditional string expression for setting the number of columns field |
int |
getNumberOfColumns()
Indicates the number of columns that should make up one row of data |
Class<? extends Container> |
getSupportedContainer()
Default Impl |
boolean |
isApplyAlternatingRowStyles()
Indicates whether alternating row styles should be applied |
boolean |
isApplyDefaultCellWidths()
Indicates whether the manager should default the cell widths |
boolean |
isMatchColumnsToFieldCount()
Indicates whether the number of columns for the table data should match the number of fields given in the container's items list (so that each field takes up one column without wrapping) |
boolean |
isRenderAlternatingHeaderColumns()
Indicates whether header columns (th for tables) should be rendered for every other item (alternating) |
void |
performApplyModel(View view,
Object model,
Container container)
Called after the initialize phase to perform conditional logic based on the model data |
void |
performFinalize(View view,
Object model,
Container container)
The following finalization is performed: Build the list of fields for the grid |
void |
performInitialization(View view,
Container container)
The following initialization is performed: If match field count is true, sets the number of columns to the container's items list size |
void |
setApplyAlternatingRowStyles(boolean applyAlternatingRowStyles)
Setter for the alternating row styles indicator |
void |
setApplyDefaultCellWidths(boolean applyDefaultCellWidths)
Setter for the default cell width indicator |
void |
setConditionalNumberOfColumns(String conditionalNumberOfColumns)
Setter for the conditional number of columns string |
void |
setMatchColumnsToFieldCount(boolean matchColumnsToFieldCount)
Setter for the match column count to field count indicator |
void |
setNumberOfColumns(int numberOfColumns)
Setter for the number of columns (each row) |
void |
setRenderAlternatingHeaderColumns(boolean renderAlternatingHeaderColumns)
Setter for the render alternating header columns indicator |
Methods inherited from class org.kuali.rice.kns.uif.layout.LayoutManagerBase |
---|
addStyleClass, getContext, getId, getNestedComponents, getPropertiesForReferenceCopy, getPropertyReplacers, getStyle, getStyleClasses, getStyleClassesAsString, getTemplate, pushObjectToContext, setContext, setId, setPropertyReplacers, setStyle, setStyleClasses, setStyleClasses, setTemplate |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public GridLayoutManager()
Method Detail |
---|
public void performInitialization(View view, Container container)
performInitialization
in interface LayoutManager
performInitialization
in class LayoutManagerBase
view
- - View instance the layout manager is a part ofcontainer
- - Container the layout manager applies toLayoutManagerBase.performInitialization(org.kuali.rice.kns.uif.container.View,
org.kuali.rice.kns.uif.container.Container)
public void performFinalize(View view, Object model, Container container)
performFinalize
in interface LayoutManager
performFinalize
in class LayoutManagerBase
view
- - view instance that should be finalized for renderingmodel
- - top level object containing the datacontainer
- - Container the layout manager applies toLayoutManagerBase.performFinalize(org.kuali.rice.kns.uif.container.View,
java.lang.Object, org.kuali.rice.kns.uif.container.Container)
public void performApplyModel(View view, Object model, Container container)
LayoutManager
performApplyModel
in interface LayoutManager
performApplyModel
in class LayoutManagerBase
view
- - view instance to which the layout manager belongsmodel
- - Top level object containing the data (could be the form or a
top level business object, dto)container
- - Container the layout manager applies toLayoutManagerBase.performApplyModel(org.kuali.rice.kns.uif.container.View,
java.lang.Object, org.kuali.rice.kns.uif.container.Container)
public Class<? extends Container> getSupportedContainer()
LayoutManagerBase
getSupportedContainer
in interface LayoutManager
getSupportedContainer
in class LayoutManagerBase
org.kuali.rice.kns.uif.layout.ContainerAware#getSupportedContainer()
public int getNumberOfColumns()
If the item count is greater than the number of columns, a new row will be created to render the remaining items (and so on until all items are placed).
Note this does not include any generated columns by the layout manager, so the final column count could be greater (if label fields are separate).
public void setNumberOfColumns(int numberOfColumns)
numberOfColumns
- public String getConditionalNumberOfColumns()
public void setConditionalNumberOfColumns(String conditionalNumberOfColumns)
conditionalNumberOfColumns
- public boolean isMatchColumnsToFieldCount()
If set to true during the initialize phase the number of columns will be set to the size of the container's field list, if false the configured number of columns is used
public void setMatchColumnsToFieldCount(boolean matchColumnsToFieldCount)
matchColumnsToFieldCount
- public boolean isApplyAlternatingRowStyles()
Indicator to layout manager templates to apply alternating row styles. See the configured template for the actual style classes used
public void setApplyAlternatingRowStyles(boolean applyAlternatingRowStyles)
applyAlternatingRowStyles
- public boolean isApplyDefaultCellWidths()
If true, the manager will set the cell width by equally dividing by the number of columns
public void setApplyDefaultCellWidths(boolean applyDefaultCellWidths)
applyDefaultCellWidths
- public boolean isRenderAlternatingHeaderColumns()
If true the first cell of each row will be rendered as an header, with every other cell in the row as a header
public void setRenderAlternatingHeaderColumns(boolean renderAlternatingHeaderColumns)
renderAlternatingHeaderColumns
-
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |