Options
Menu

Represents a table cell.

Hierarchy

  • UpDatarangeControl

Implements

Implemented by

Index

Methods

getHtml

  • getHtml(asNode: boolean): HTMLElement | JQuery<HTMLElement>
  • Returns jQuery HTML node representing the current record control.

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

    Parameters

    • asNode: boolean

    Returns HTMLElement | JQuery<HTMLElement>

getJsValue

  • getJsValue(fallbackValue: number | Date): null | string | number | string[] | Date
  • Returns the display value. If possible, it will be parsed.

    Parameters

    • fallbackValue: number | Date

    Returns null | string | number | string[] | Date

getRecord

getValue

  • getValue(): any
  • Get the display value for current record control.

    Returns any