Options
Menu

Represents a table column - a collection of record objects (UpDatarangeControl).

Hierarchy

  • UpDatarangeControlGroup

Index

Methods

getControl

  • Returns the column for a specific record.

    Parameters

    • identifier: string

      The record id

    Returns null | UpDatarangeControl

getControlType

  • getControlType(): undefined | string
  • Get the control type of a datarange column.

    example
    var controlGroup = ix.util.getUp("[TABLE-GUID]").getControlGroup("[CONTROL-GUID]");
    controlGroup.getControlType();
    

    Returns undefined | string

getControls

getHtml

  • getHtml(): JQuery<HTMLElement>
  • Return a jQuery list with all HTML column nodes of all records.

    example
    // set background color for table column
    var controlGroup = ix.util.getUp("[TABLE-GUID]").getControlGroup("[CONTROL-GUID]");
    controlGroup.getHtml().css('backgroundColor', 'blue');
    

    Returns JQuery<HTMLElement>

getSum

  • getSum(): null | number
  • Calculate sum of one datarange column (if applicable).

    example
    var controlGroup = ix.util.getUp("[TABLE-GUID]").getControlGroup("[CONTROL-GUID]");
    controlGroup.getSum();
    

    Returns null | number