Helper class for calling internal sort, filter and grouping classesS

Type Parameters

  • T = any

Constructors

  • Type Parameters

    • T = any

    Parameters

    • OptionaldataContainer: DataContainer
    • Optionaloptions: DatasourceConfigOptions

    Returns Datasource<T>

Properties

currentEntity: EntityUnion<T> = null

current entity, use this with form etc if you have a grid with detail form

Accessors

  • get type(): string
  • so I can check

    Returns string

Methods

  • Internal

    used to call subscribers, used by selection/sorting/filter/grouping controller

    Parameters

    • event: string
    • data: {} = {}

      Returns void

    • Internal

      INTERNAL: Used by selection to set new current entity

      Parameters

      • row: number

      Returns void

    • adds event listener, this is called when collection is changed by sorting/grouping etc

      Parameters

      Returns void

    • Parameters

      Returns void

    • Returns void

    • collapse 1 or all groups

      Parameters

      • Optionalid: string

        null/undefined = all

      Returns void

    • deSelectAll all rows displayed

      Parameters

      • triggerEvent: boolean = false

      Returns void

    • expand 1 or all groups

      Parameters

      • Optionalid: string

        null/undefined = all

      Returns void

    • filters using the connected data container, result is sorted also if this is set if you need to set sort then do this before calling filter

      Parameters

      Returns void

    • This is the data in the dataContainer

      Returns EntityUnion<T>[]

    • returns copy of all modified, new or marked for deletion changes to these do not edit anything in grid

      Returns any

    • This returns datacontainer used

      Returns DataContainer

    • Returns DateAndNumberFormater

    • gets current expanded ids

      Returns string[]

    • Parameters

      Returns string

    • returns current grouing config

      Returns GroupArgument[]

    • Returns EntityUnion<T>[]

    • Returns DateAndNumberFormater

    • returns current sortorder config

      Returns SortArgument[]

    • returns 1 row sorted/grouped/filtered, start on 0

      Parameters

      • rowNo: number

      Returns EntityUnion<T>

    • returns all rows sorted/grouped/filtered

      Parameters

      • OptionalonlyDataRows: boolean

        only get sorted/filtered and skip group

      Returns EntityUnion<T>[]

    • returns selected data rows

      Returns Entity[]

    • Returns Selection

    • return selection mode used

      Returns SelectionMode

    • Groups filtered collection

      Parameters

      Returns void

    • returns lenght of sorted/filtered collection

      Parameters

      • OptionalonlyDataRows: boolean

        use this to skip grouping rows

      Returns number

    • only mark for deletion, you can reset/bring it back with resetData()

      Parameters

      Returns void

    • Returns void

    • remove data

      Parameters

      • data: Entity | Entity[]
      • all: boolean = false
      • rerunFilters: boolean = true

        if you plan to trigger many times in a loop then you want to set this to false until last one

      Returns Entity[]

    • removes listener from datasource

      Parameters

      Returns void

    • Removed group

      Parameters

      Returns void

    • resets all edited data and brings back marked for deletion

      Returns void

    • resets all edited data and brings back marked for deletion

      Returns void

    • resets current sort

      Parameters

      • OptionaldefaultSortAttribute: string

        attribute name if you have a default you want to use

      Returns void

    • sets current entity and selection, start on 1 not 0

      Parameters

      • Optionalrow: number
      • OptionaltriggerSelect: boolean

      Returns void

    • Selects all rows displayed

      Returns void

    • updates current entity to first

      Returns void

    • updates current entity to last entity

      Returns void

    • updates current entity, if on last it will end on up the first

      Returns void

    • updates current entity, if first when running this it will select the last

      Returns void

    • for adding data to datasource, this will also be sendt to dataContainer so if you replace data the data in the datacontainer also gets replaced

      Parameters

      • data: any[]

        js object

      • add: boolean = false

        add to current, if false it replaces current collections

      • reRunFilter: boolean = false

        rerun current filter, grouping/sorting will run automatically

      Returns void

    • Parameters

      • formater: DateAndNumberFormater

      Returns void

    • Parameters

      • x: string[]

      Returns void

    • sets current expanded ids

      Parameters

      • x: string[]

      Returns void

    • Parameters

      Returns void

    • sets current grouing config

      Parameters

      Returns void

    • sets Intl Collator , this is used for sorting

      Parameters

      • code: string
      • Optionaloptions: any

      Returns void

    • Parameters

      • formater: DateAndNumberFormater

      Returns void

    • Sets order by, if you plan to filter with new sorting order you need to use this first

      Parameters

      Returns void

    • sets row as current entity

      Parameters

      • row: number

        0 based like array, not like the select

      Returns void

    • replace selection mode used, if blank it will be set to 'none'

      Parameters

      Returns void

    • Parameters

      Returns void

    • sorts current displayed selection

      Parameters

      • Optionalargs: SortArgument | SortArgument[]

        obj/obj array must have attribute and ascending

      • Optionaladd: boolean

        add to previous sort arguments

      Returns void

    • Returns void