Show TOC

Background documentationCTableColumn Properties Locate this document in the navigation structure

 

  • CELL_BORDER_OMITTING

    This property specifies whether the right (horizontal), the lower (vertical), or both borders are not available.

    To omit the borders of individual cells, this property must be bound to a context attribute (beneath the DATA_SOURCE of the table).

  • CELL_DESIGN

    This property defines the background color of the table cell. You can find the valid values under WDUI_TABLE_CELL_DESIGN.

  • COL_SELECTION_STATE

    Selection status of the column; valid values are notSelectable, notSelected and selected.

  • COLUMN_RESIZEABLE

    This property specifes whether the size of a column can be changed by a user (inplace with drag & drop).

  • H_ALIGN

    Horizontal alignment of the cell content

  • HEADER_H_ALIGN

    Horizontale alignment of the column header. Default: Left

  • IS_FILTERED

    Specifies whether a filter icon is displayed in the column heading. This indicates that the current table entries are filtered according to values in this TableColumn.

  • SELECTED_CELL_VARIANT

    This property specifes the active table cell variants for a table cell. The variant whose variantKey matches the selectedCellVariant is used. If the value is set to initial, no cell variant is used, instead the properties of the table column itself and its TableCellEditor are used. An invalid selectedCellVariant is not allowed.

  • SORT_STATE

    This property describes how a table column is sorted. The data in the table is not automatically displayed sorted by the sortState property and the onSort event; the application itself must sort the data.

  • STATE

    Specifes whether the column is to be flagged as "required" (column header is preceded with an asterisk)

  • WIDTH

    Width of the table column; %, em, ex or px

    This property can be personalized both by the user and the administrator.

    Note Note

    • If the column width of one column is specified as a percentage, horizontal scrolling is not possible. If the width of all columns is specified as a percentage, it is not a problem. The sum of all width specifications should not be more than 100%.

    • If you want to specify the column width in different units, make sure that you specify first the columns whose widths you want to specify in pixels, em and ex, and then distribute the available table width to the remaining columns in percentages.

    End of the note.