IgrRowType

Interface representing a row in the grid. It is essentially the blueprint to a row object. Contains definitions of properties and methods, relevant to a row

Optional addRowUI

Section titled "addRowUI"
addRowUI?: boolean

Optional A list or an array of cells, that belong to the row

cells?: IgrCellType[]

Optional children

Section titled "children"

Optional Contains the child rows of the current row, if there are any.

children?: IgrRowType[]
data?: any

Optional Indicates whether the row is marked for deletion.

deleted?: boolean

Optional disabled

Section titled "disabled"

Optional Indicates whether the current row is disabled

disabled?: boolean

Optional expanded

Section titled "expanded"

Optional Indicates whether the current row is expanded. The value is true, if the row is expanded and false, if it is collapsed

expanded?: boolean

Optional Indicates whether the row is currently focused.

focused?: boolean

Optional groupRow

Section titled "groupRow"
groupRow?: IgrGroupByRecord

Optional hasChildren

Section titled "hasChildren"

Optional Indicates whether the current row has any child rows

hasChildren?: boolean

Optional inEditMode

Section titled "inEditMode"

Optional Indicates whether the row is currently being edited.

inEditMode?: boolean

Optional isGroupByRow

Section titled "isGroupByRow"

Indicates whether the row is grouped.

isGroupByRow?: boolean

Optional isSummaryRow

Section titled "isSummaryRow"
isSummaryRow?: boolean
key?: any

Optional Contains the parent row of the current row, if it has one. If the parent row exist, it means that the current row is a child row

parent?: IgrRowType

Optional Indicates whether the current row is pinned.

pinned?: boolean

Optional selected

Section titled "selected"

Optional Indicates whether the current row is selected

selected?: boolean

Optional Represents the hierarchical record associated with the row (for tree grids). It is of type ITreeGridRecord, which contains the data, children, the hierarchical level, etc.

treeRow?: IgrTreeGridRecord

Optional validation

Section titled "validation"
validation?: IgrGridValidationState
grid: any
index: any
viewIndex: any
delete?: any
pin?: any
unpin?: any
update?: any