Options
Menu

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

Hierarchy

  • UpDatarangeRecord

Implements

Implemented by

Index

Methods

getControl

  • Get a datarange control (table record).

    Parameters

    • guid: string

    Returns null | UpDatarangeControl

getControls

  • Returns a jQuery list with all control objects of the current record.

    Returns UpDatarangeControl[]

getHtml

  • getHtml(): JQuery<HTMLElement>
  • Returns a jQuery list with one or more HTML nodes (e.g. <tr> or <li>).

    example
    // set background color for current record row(s)
    var record = ix.util.getUp("[TABLE-GUID]").getRecord("[RECORD-GUID]");
    record.getHtml().css('backgroundColor', 'blue');
    

    Returns JQuery<HTMLElement>

getIdentifier

  • getIdentifier(): string
  • Get the record identifier (mostly the record id).

    Returns string

getParentRecId

  • getParentRecId(): string
  • Get the parent record id.

    Returns string

getRecId

  • getRecId(): string
  • Get the record id.

    Returns string

getRecPosition

  • getRecPosition(): string
  • Get the records actual position.

    Returns string

hide

  • hide(): void
  • Hides the record row(s).

    Returns void

remove

  • remove(): void
  • Remove the record from DOM.

    Returns void

show

  • show(): void
  • Makes the record row(s) visible.

    Returns void