グループのコンテンツへの参照を返します。
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;
IgxGridGroupByRowComponent
が属する IgxGridComponent
への参照を返します。
this.grid1.rowList.first.grid;
基になる HTML 要素への参照を返します。
const groupRowElement = this.nativeElement;
グループ行に適用されるスタイル クラスを返します。
const groupCssStyles = this.grid1.rowList.first.styleClasses;
グループ行を切り替えます。
this.grid1.rowList.first.toggle()
行に属するグリッドの id を設定する @Input プロパティ。
<igx-grid-groupby-row [gridID]="id" [index]="rowIndex" [groupRow]="rowData" #row></igx-grid-groupby-row>