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
Properties
Section titled "Properties"Optional addRowUI
Section titled "addRowUI"addRowUI?: boolean Optional cells
Section titled "cells"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[] Optional data
Section titled "data"data?: any Optional deleted
Section titled "deleted"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 focused
Section titled "focused"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 Optional key
Section titled "key"key?: any Optional parent
Section titled "parent"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 pinned
Section titled "pinned"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 treeRow
Section titled "treeRow"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 Accessors
Section titled "Accessors"grid: any index
Section titled "index"index: any viewIndex
Section titled "viewIndex"viewIndex: any Methods
Section titled "Methods"Optional delete
Section titled "delete"delete?: any Optional pin
Section titled "pin"pin?: any Optional unpin
Section titled "unpin"unpin?: any Optional update
Section titled "update"update?: any