Returns a reference of the content of the group.
const groupRowContent = this.grid1.rowList.first.groupContent;
An
property that specifies the group record the component renders for.
<igx-grid-groupby-row [gridID]="id" [index]="rowIndex" [groupRow]="rowData" #row></igx-grid-groupby-row>
An
property that sets the index of the row.
<igx-grid-groupby-row [gridID]="id" [index]="rowIndex" [groupRow]="rowData" #row></igx-grid-groupby-row>
Returns whether the group row is expanded.
const groupRowExpanded = this.grid1.rowList.first.expanded;
Returns whether the row is focused.
let gridRowFocused = this.grid1.rowList.first.focused;
Returns a reference to the underlying HTML element.
const groupRowElement = this.nativeElement;
Returns the style classes applied to the group rows.
const groupCssStyles = this.grid1.rowList.first.styleClasses;
An
Input
property that sets the id of the grid the row belongs to.