Interface WebFormTableColumn

All Superinterfaces:
Element, Field, java.io.Serializable, TableColumn, WebFormFieldOrColumn

public interface WebFormTableColumn
extends TableColumn, WebFormFieldOrColumn
The WebFormTableColumn represents a table column in an interactive web form.

Individual table columns can be accessed via their parent table.

Since:
V4.4
  • Method Details

    • getColumnControl

      FieldColumnControl getColumnControl()
      Returns the first Table Column Control on the current page that displays this column. Use this method when the table column is displayed in a Table Control. Use method getFieldControl() when the table column is displayed in a Repeater Control or standalone on a page.
      Returns:
      table column control
      See Also:
      getColumnControl(Page)
    • getColumnControl

      FieldColumnControl getColumnControl​(Page page)
      Returns the first Table Column Control on the specified page that displays this column. Use this method when the table column is displayed in a Table Control. Use method getFieldControl(Page) when the table column is displayed in a Repeater Control or standalone on a page.
      Returns:
      table column control
      See Also:
      getColumnControl()
    • getFieldControl

      FieldControl getFieldControl()
      Returns the first Field Control on the current page that displays this column. Use this method when the table column is displayed in a Repeater Control or as a standalone Field Control on a page. Use method getColumnControl() when the table column is displayed in a Table Control.
      Returns:
      field control
      See Also:
      getFieldControl(Page)
    • getFieldControl

      FieldControl getFieldControl​(Page page)
      Returns the first Table Column Control on the specified page that displays this column. Use this method when the table column is displayed in a Repeater Control or as a standalone Field Control on a page. Use method getColumnControl(Page) when the table column is displayed in a Table Control.
      Returns:
      field control
      See Also:
      getFieldControl()
    • getLabelText

      Text getLabelText()
      Returns the column header Text for the column for the current language.
      Specified by:
      getLabelText in interface WebFormFieldOrColumn
      Returns:
      label text
      Since:
      V4.4