| Name | Description | Type |
|---|
| autolink |
Automatically hyperlink URLs and email addresses that appear in the column. Defaults to 'false'.
| boolean |
| class |
html pass through attribute; use this instead of directly coding presentational atttributes.
| String |
| decorator |
The fully qualified class name of a class that should be used to "decorate" the underlying object being
displayed. The class should implement org.displaytag.decorator.ColumnDecorator. If a decorator is
specified for the entire table, then this decorator will decorate that decorator.
| String |
| group |
The grouping level (starting at 1 and incrementing) of this column (indicates if successive contain the
same values, then they should not be displayed). The level indicates that if a lower level no longer
matches, then the matching for this higher level should start over as well. If this attribute is not
included, then no grouping is performed.
| int |
| headerClass | "class" html attribute added only for header cells. | String |
| href |
The base URL used to construct the dynamic link. If this attribute is provided, then the data that is
shown for this column is wrapped inside a <a href> tag with the url provided through this
attribute. Typically you would use this attribute along with one of the struts-like param attributes
(param*) to create a dynamic link so that each row creates a different URL based on the data that is
being viewed. An empty href value will generate a link to the current page, preserving parameters just
like for paging links.
| String |
| maxLength |
If this attribute is provided, then the column's displayed is limited to this number of characters. An
elipse (...) is appended to the end if this column is linked, and the user can mouseover the elipse to
get the full text. Be careful on using this attribute for String which can contain html tags or
entities, or together with the autolink attribute turned on: displaytag will do its best trying to avoid
leaving unclosed tags or broken entities in the output, but a complex or bad input could lead to
unattended results.
| int |
| maxWords |
If this attribute is provided, then the column's displayed is limited to this number of words. An elipse
(...) is appended to the end if this column is linked, and the user can mouseover the elipse to get the
full text. Be careful on using this attribute for String which can contain html tags or entities, or
together with the autolink attribute turned on: displaytag will do its best trying to avoid leaving
unclosed tags or broken entities in the output, but a complex or bad input could lead to unattended
results.
| int |
| media |
Use this attribute to keep a column from being output during an export. The column will only render for
the named media type(s) - it won't be added to the table if the current request media is not supported.
Can be any space separated combination of 'html', 'csv', 'xml', 'all', or 'excel'. Defaults to 'all'.
See the export page in the example webapp for more details.
| String |
| nulls |
By default, null values don't appear in the list. By setting 'nulls' to 'true', then null values will
appear as "null" in the list (mostly useful for debugging). Defaults to 'false'.
| boolean |
| paramId |
The name of the request parameter that will be dynamically added to the generated href URL. The
corresponding value is defined by the paramProperty and (optional) paramName attributes, optionally
scoped by the paramScope attribute.
| String |
| paramName |
The name of a JSP bean that is a String containing the value for the request parameter named by paramId
(if paramProperty is not specified), or a JSP bean whose property getter is called to return a String
(if paramProperty is specified). The JSP bean is constrained to the bean scope specified by the
paramScope property, if it is specified. If paramName is omitted, then it is assumed that the current
object being iterated on is the target bean.
| String |
| paramProperty |
The name of a property of the current object being iterated on, whose return value will be used as the
value of the parameter (named by the paramId attribute) that will be dynamically added to this href URL.
If paramName is also specified the property will not be fetched from the object being iterated on, but
from the bean specified by paramName. The support of paramProperty in conjunction with paramName will be
probably removed in future: use paramProperty only if you need a property in the iterated object,
elsewhere use only paramName (you can select a property using an expression name.property).
| String |
| property |
name of the property in the bean specified in the parent table tag (via the "name" attribute) mapped to
this column
| String |
| sortable | Set to 'true' to make the column sortable. Defaults to 'false'. | boolean |
| sortProperty |
name of the property in the bean specified in the parent table tag (via the "name" attribute) which will
be used to sort values in the column. This can be used when the column body is filled or a decorator is
used and column should sort on undeorated values.
| String |
| style | html pass through attribute. | String |
| title | title of the column (text for the th cell) | String |
| titleKey |
Resource key used to lookup the title value. Only works if "title" is not defined. Works together with a
configured I18nResourceProvider, specified via the displaytag.properties file. By default, if JSTL is
available, the JSTL provider is used, which makes this attribute work the same as fmt:message's key
property.
| String |
| url |
The base URL used to construct the dynamic link. This attribute has the same functionality as the href
attribute, but it pre-pends the contextPath.
| String |
| width |
@deprecated; html attribute. Use "style" or "class" to set presentational attributes using css.
| String |
| styleClass | @deprecated: use "class" | String |
| headerStyleClass | @deprecated: use "headerClass" | String |
| sort | @deprecated: use "sortable" | boolean |
| align |
@deprecated html attribute. Use "style" or "class" to set presentational attributes using css.
| String |
| background |
@deprecated html attribute. Use "style" or "class" to set presentational attributes using css.
| String |
| bgcolor |
@deprecated html attribute. Use "style" or "class" to set presentational attributes using css.
| String |
| height |
@deprecated html attribute. Use "style" or "class" to set presentational attributes using css.
| String |
| nowrap |
@deprecated html attribute. Use "style" or "class" to set presentational attributes using css.
| String |
| valign |
@deprecated html attribute. Use "style" or "class" to set presentational attributes using css.
| String |
| paramScope |
@deprecated - use Expressions in paramName. The scope within which to search for the bean specified by
the paramName attribute. If not specified, all scopes are searched. If paramName is not provided, then
the current object being iterated on is assumed to be the target bean.
| String |