Attributes |
Name | Required | Request-time | Type | Description |
label | true | true | java.lang.String |
The key for a property in a message bundle that defines the localized text to display as the
heading title for this column. The "bundle" attribute in the <wl-extension:table> tag determines in which bundle the
JSP tag searches for this property. The "showheadings" attribute of the
parent <wl-extension:table> tag determines whether the table displays heading titles.
|
property | true | true | java.lang.String |
The property of a row bean that cells in this column render.
|
align | false | true | java.lang.String |
Specifies horizontal alignment of this column's cell content. Valid values for this
attribute are the same as the "align" attribute for standard HTML table elements unless
you specify a custom cell renderer that does not support standard HTML values.
|
width | false | true | java.lang.String |
Specifies the width of this column. Valid values for this
attribute are the same as the "width" attribute for standard HTML table elements unless
you specify a custom cell renderer that does not support standard HTML values.
|
default | false | true | boolean |
Specifies whether this cell is rendered by default.
Users can customize the table display and prevent this cell from rendering.
|
cellrenderer | false | true |
com.bea.console.taglib.html.renderer.CellRenderer |
Overrides the default cell renderer and specifies the
fully qualified name of another class to render content for this cell in
this table column.
|
edit | false | true | boolean |
Specifies that the contents of this table column can be edited directly
from the table. Requires you to define a Struts action in the "editor" attribute of <wl-extension:column>.
|
editor | false | true | java.lang.String |
The mapping path to the Struts action that processes user edits to the
contents of cells in this column.
|
encodeNeeded | false | true | boolean |
Determines if the values in this column need XSS encoding.
If not specified on a column the setting for the table if any applies.
The default cell renderer will obey this setting but other cell renderers are
free to ignore this setting.
|
nowrap | false | true | boolean |
Controls whether word wrapping disabled for this column.
|