The pivot record data passed to the row component.
// get the pivot row data for the first selected row
let selectedRowData = this.grid.selectedRows[0].data;
Gets the expanded state of the row.
let isExpanded = row.expanded;
Expands/collapses the current row.
this.grid.selectedRows[2].expanded = true;
Gets the ID of the row. A row in the grid is identified either by:
let rowID = this.grid.selectedRows[2].key;
The native DOM element representing the row. Could be null in certain environments.
// get the nativeElement of the second selected row
let selectedRowNativeElement = this.grid.selectedRows[1].nativeElement;
The index of the row.