グループのコンテンツへの参照を返します。
const groupRowContent = this.grid1.rowList.first.groupContent;
コンポーネントが描画されるためのグループ レコードを指定する @Input プロパティ。
<igx-grid-groupby-row [gridID]="id" [index]="rowIndex" [groupRow]="rowData" #row></igx-grid-groupby-row>
行のインデックスを設定する @Input プロパティ。
<igx-grid-groupby-row [gridID]="id" [index]="rowIndex" [groupRow]="rowData" #row></igx-grid-groupby-row>
グループ行が展開されるかどうかを返します。
const groupRowExpanded = this.grid1.rowList.first.expanded;
行がフォーカスされるかどうかを返します。
let gridRowFocused = this.grid1.rowList.first.focused;
基になる HTML 要素への参照を返します。
const groupRowElement = this.nativeElement;
グループ行に適用されるスタイル クラスを返します。
const groupCssStyles = this.grid1.rowList.first.styleClasses;
Input
行に属するグリッドの id を設定する @Input プロパティ。