ASP.NET MVC コントロールヘルプ
CellFactory クラス
ファイル
wijmo.grid.js
モジュール
wijmo.grid

FlexGrid コントロール内のセルを表すHTML要素を作成します。

メソッド

メソッド

disposeCell

disposeCell(cell: HTMLElement): void

セル要素を破棄し、その要素に関連するすべてのリソースを解放します。

パラメーター
  • cell: HTMLElement

    The element that represents the cell.

戻り値
void

getEditorValue

getEditorValue(g: FlexGrid): any

現在使用中のエディタの値を取得します。

パラメーター
戻り値
any

updateCell

updateCell(p: GridPanel, r: number, c: number, cell: HTMLElement, rng?: CellRange, updateContent?: boolean): void

グリッドのセルを作成または更新します。

パラメーター
  • p: GridPanel

    The GridPanel that contains the cell.

  • r: number

    The index of the row that contains the cell.

  • c: number

    The index of the column that contains the cell.

  • cell: HTMLElement

    The element that represents the cell.

  • rng: CellRange Optional

    The CellRange object that contains the cell's merged range, or null if the cell is not merged.

  • updateContent: boolean Optional

    Whether to update the cell's content as well as its position and style.

戻り値
void