Home > Contents >
Alpha TOC   |    Annotated TOC 

 

column

Defines a column and can be used within a stdtable or simpletable module.

Syntax

<column
       name="table caption"
       columntype="list type"
      [rscolumn="column name"]
      [sortable="true|false"]
      [markcolumn="column name"]
      [style="column style"]
      />

Attributes

Name
Type
Required?
Default value
Description
name
string
No default value.
Generates a caption for tables.
columntype
list (date/number/string/text)
No default value.
Changes only the rendering of the column. No data checks are done based on this attribute.
rscolumn
reference to the resultset column
Χ
No default value.
Maps the column to a column of the result set of the module. This is required if you wish to enable sorting by this column.
sortable
boolean
Χ
No default value.
When set to true, this parameter enables the sort link at the column header.
sortrscolumn
string
Χ
No default value.
Setting this attribute is the same as setting the rscolumn and sortable attributes to true. This attribute is deprecated. Use the rscolumn and sortable attributes instead.
markcolumn
string
reference to the resultset column
Χ
No default value.
Specifies a result set column name. If its value is 1 the cell will be highlighted.
style
string
Χ
No default value.
Sets the CSS style of the HTML column.

Children

  • <value>
  • <columnheader> (optional, only for advanced column header definitions.)
  • <sumline> (only if parent is a stdtable).

    Parents

  • <display>
  • <header>
  • <row>

    Example

    <column name="count" columntype="number" sortrscolumn="count">
    		<value type="number">
    			<valueparam="format" parse="false" value="#####0"/>
    			<valueparam name="value" value="#count#"/>
    		</value>
    
    		<sumline>
    			<value type="number">
    				<valueparam name="format" parse="false" value="#########0"/>
    				<valueparam name="value" value="#countsum#"/>
    			</value>
    		</sumline>
    	</column>

    See Also

  • <sumline>
  • <valueparam>
  •   Home > Contents >

    Oracle WebCenter Sites 11gR1 | Analytics Tag Reference
    Copyright 2012 by Oracle Corporation
    All rights reserved.