GridView for ASP.NET Web Forms
data オプション
jQuery.wijmo.c1gridview 名前空間 > options タイプ : data オプション
Determines the datasource. Possible datasources include: 1. A DOM table. This is the default datasource, used if the data option is null. Table must have no cells with rowSpan and colSpan attributes. 2. A two-dimensional array, such as [[0, "a"], [1, "b"]]. 3. An array of objects, such as [{field0: 0, field1: "a"}, {field0: 1, field1: "b'}]. 4. A wijdatasource. 5. A wijdataview.
シンタックス
//値を取得する
var value; //タイプ: any
value = $(".selector").c1gridview("option", "data");

//値を設定します
var newValue; //タイプ: any
$(".selector").c1gridview("option", "data", newValue);
var data : any;
使用例
// DOM table
$("#element").wijgrid();
// two-dimensional array
$("#element").wijgrid({ data: [[0, "a"], [1, "b"]] });
関連トピック

参照

options タイプ
c1gridview jQuery ウィジェット