The detailCreating event handler is called when wijgrid requires to create a new detail wijgrid.
シンタックス
var options; //タイプ: jQuery.wijmo.c1gridview.options
//新しいウィジェットc1gridviewを作成
$(".selector").c1gridview(options);
//以前はc1gridviewで作成されたウィジェットのインスタンスを取得
var widgetInstance; //タイプ: jQuery.wijmo.c1gridview
widgetInstance = $(".selector").data("wijmo-c1gridview");
%JQueryMemberName%イベントハンドラ関数を設定する
widgetInstance.option("detailCreating", function (e, args) { } );
detailCreating = function (
: Object,
: wijmo.grid.IDetailCreatingEventArgs
) { };
パラメータ
- e
- The jQuery.Event object.
- args
- The data with this event.
関連トピック