Interface RowType

グリッド内の行を表すインターフェイスです。これは基本的に行オブジェクトの設計図です。 行に関連するプロパティとメソッドの定義が含まれます。

次で実装:

プロパティ

addRowUI?: boolean
beginAddRow?: (() => void)

オプション。 新しい行の追加を処理するメソッドです。

Type declaration

    • (): void
    • 返却 void

cells?: QueryList<CellType> | CellType[]

オプション。 行に属するセルのリストまたは配列です。

children?: RowType[]

オプション。 現在の行の子行があれば、それが含まれます。

data?: any
delete?: (() => any)

オプション。 行の削除を処理するメソッドです。

Type declaration

    • (): any
    • 返却 any

deleted?: boolean

オプション。 行が削除対象としてマークされているかどうかを示します。

disabled?: boolean

オプション。 現在の行が無効かどうかを示します。

expanded?: boolean

オプション。 現在の行が展開されているかどうかを示します。 行が展開されている場合は値は true、縮小されている場合は false です。

focused?: boolean

オプション。 行が現在フォーカスされているかどうかを示します。

grid: GridType

行が属するグリッド インスタンスを表します

groupRow?: IGroupByRecord
hasChildren?: boolean

オプション。 現在の行に子行があるかどうかを示します。

inEditMode?: boolean

オプション。 行が現在編集中かどうかを示します。

index: number

グリッド内の行のインデックスです。

isGroupByRow?: boolean

行がグループ化されているかどうかを示します。

isSummaryRow?: boolean
key?: any
nativeElement?: HTMLElement

行自体のネイティブ HTML 要素を表します。

onClick?: ((event) => void)

オプション。 行のクリック イベントを処理するメソッドです。引数として MouseEvent を受け取ります。

Type declaration

    • (event): void
    • パラメーター

      • event: MouseEvent

      返却 void

onRowSelectorClick?: ((event) => void)

Type declaration

    • (event): void
    • パラメーター

      • event: MouseEvent

      返却 void

parent?: RowType

オプション。 現在の行の親行がある場合は、それが含まれます。 親行が存在する場合は、現在の行が子行です。

pin?: (() => void)

オプション。 行のピン固定を処理するメソッドです。

Type declaration

    • (): void
    • 返却 void

pinned?: boolean

オプション。 現在の行がピン固定されているかどうかを示します。

selected?: boolean

オプション。 現在の行が選択されているかどうかを示します。

summaries?: Map<string, IgxSummaryResult[]>

オプション。 列フィールド名の行の集計結果へのマップです。

treeRow?: ITreeGridRecord

オプション。 Represents the hierarchical record associated with the row (for tree grids). It is of type ITreeGridRecord, which contains the data, children, the hierarchical level, etc.

unpin?: (() => void)

オプション。 ピン固定された行のピン固定解除を処理するメソッドです。

Type declaration

    • (): void
    • 返却 void

update?: ((value) => void)

オプション。 行の要素の値の変更を処理するメソッドです。 新しい値を引数として受け取ります。

Type declaration

    • (value): void
    • パラメーター

      • value: any

      返却 void

viewIndex: number

オプション。 キャッシュから追加されたデータ レコードの仮想化状態です。