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

FlexSheet で選択されているSheet のソートを管理します。

コンストラクタ

プロパティ

メソッド

コンストラクタ

constructor

constructor(owner: FlexSheet): SortManager

SortManagerクラスの新しいインスタンスを初期化します。

パラメーター
戻り値
SortManager

プロパティ

sortDescriptions

ColumnSortDescription オブジェクトによって表されたソート記述のコレクションを取得または設定します。

CollectionView

メソッド

addSortLevel

addSortLevel(columnIndex?: number, ascending?: boolean): void

ソート記述に空白のソートレベルを追加します。

パラメーター
  • columnIndex: number Optional

    The index of the column in the FlexSheet control.

  • ascending: boolean Optional

    The sort order for the sort level.

戻り値
void

cancelSort

cancelSort(): void

FlexSheetコントロールに対して現在のソート記述をキャンセルします。

戻り値
void

checkSortItemExists

checkSortItemExists(columnIndex): number

特定の列のソート項目が存在するかどうかをチェックします。

パラメーター
  • columnIndex:

    The index of the column in the FlexSheet control.

戻り値
number

clearSort

clearSort(): void

ソート記述をクリアします。

戻り値
void

commitSort

commitSort(undoable?: boolean): void

現在のソート記述をFlexSheetコントロールにコミットします。

パラメーター
  • undoable: boolean Optional

    The boolean value indicating whether the commit sort action is undoable.

戻り値
void

copySortLevel

copySortLevel(): void

ソート記述に現在のソートレベルのコピーを追加します。

戻り値
void

deleteSortLevel

deleteSortLevel(columnIndex?: number): void

ソート記述から現在のソートレベルを削除します。

パラメーター
  • columnIndex: number Optional

    The index of the column in the FlexSheet control.

戻り値
void

editSortLevel

editSortLevel(columnIndex?: number, ascending?: boolean): void

現在のソートレベルを更新します。

パラメーター
  • columnIndex: number Optional

    The column index for the sort level.

  • ascending: boolean Optional

    The sort order for the sort level.

戻り値
void

moveSortLevel

moveSortLevel(offset: number): void

現在のソートレベルを新しい位置に移動します。

パラメーター
  • offset: number

    The offset to move the current level by.

戻り値
void