ASP.NET MVC コントロールヘルプ
Binding クラス
ファイル
wijmo.js
モジュール
wijmo
派生クラス
PivotFieldBinding

複合プロパティ(例: 'customer.address.city')へのバインディングを提供します。

コンストラクタ

プロパティ

メソッド

コンストラクタ

constructor

constructor(path: string): Binding

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

パラメーター
戻り値
Binding

プロパティ

path

バインディングのパスを取得または設定します。

最も単純な場合、このパスは、連結に使用するソースオブジェクトのプロパティの 名前です(例:'street')。

プロパティのサブプロパティは、JavaScriptと同様の構文を使用して 指定できます(例:'address.street')。

string

メソッド

getValue

getValue(object: any): any

指定したオブジェクトのバインディング値を取得します。

オブジェクトにバインディングのpath で指定されたプロパティが含まれていない場合、メソッドはnullを返します。

パラメーター
  • object: any

    The object that contains the data to be retrieved.

戻り値
any

setValue

setValue(object: any, value: any): boolean

指定したオブジェクトにバインディング値を設定します。

オブジェクトにバインディングのpath で指定されたプロパティが含まれていない場合、値は設定されません。

パラメーター
  • object: any

    The object that contains the data to be set.

  • value: any

    Data value to set.

戻り値
boolean