public addItem(item: T in Slick.Data.DataView<T extends SlickData>)
Parameters
item: T in Slick.Data.DataView<T extends SlickData>
public beginUpdate()
public collapseAllGroups(level?: number)
Parameters
level?: numberoptional
Optional level to collapse. If not specified, applies to all levels.
public collapseGroup(varArgs?: Array<string>)
Parameters
varArgs?: Array<string>optional
Either a Slick.Group's "groupingKey" property, or a
variable argument list of grouping values denoting a unique path to the row. For
example, calling collapseGroup('high', '10%') will collapse the '10%' subgroup of
the 'high' setGrouping.
public deleteItem(id: string)
Parameters
id: string
public endUpdate()
public expandAllGroups(level?: number)
Parameters
level?: numberoptional
Optional level to collapse. If not specified, applies to all levels.
public expandGroup(varArgs?: Array<string>)
Parameters
varArgs?: Array<string>optional
Either a Slick.Group's "groupingKey" property, or a
variable argument list of grouping values denoting a unique path to the row. For
example, calling expandGroup('high', '10%') will expand the '10%' subgroup of
the 'high' setGrouping.
public fastSort(field: string, ascending: boolean)
Parameters
field: string
ascending: boolean
public fastSort(field: Function, ascending: boolean)