クラス IgxChildGridRowComponent

階層

Hierarchy

  • IgxChildGridRowComponent

実装

  • AfterViewInit
  • OnInit

コンストラクタ

プロパティ

アクセサー

コンストラクタ

プロパティ

cdr: ChangeDetectorRef
container: ViewContainerRef
data: any = []

行コンポーネントに渡されるデータ。

// 1 番目に選択された行のデータを取得します。
let selectedRowData = this.grid.selectedRows[0].data;
element: ElementRef<HTMLElement>
expanded: boolean = false

行が展開されるかどうかを返します。

const RowExpanded = this.grid1.rowList.first.expanded;
gridAPI: IgxHierarchicalGridAPIService
index: number

行のインデックス。

// 2 番目に選択された行のインデックスを取得します。
let selectedRowIndex = this.grid.selectedRows[1].index;

アクセサー