GridView for ASP.NET Web Forms
columnsAutogenerationMode オプション
jQuery.wijmo.c1gridview 名前空間 > options タイプ : columnsAutogenerationMode オプション
Determines behavior for column autogeneration. Possible values are: "none", "append", "merge".
シンタックス
//値を取得する
var value; //タイプ: string
value = $(".selector").c1gridview("option", "columnsAutogenerationMode");

//値を設定します
var newValue; //タイプ: string
$(".selector").c1gridview("option", "columnsAutogenerationMode", newValue);
var columnsAutogenerationMode : string;
使用例
$("#element").wijgrid({ columnsAutogenerationMode: "merge" });
解説
Possible values are: "none": Column auto-generation is turned off. "append": A column will be generated for each data field and added to the end of the columns collection. "merge": Each column having dataKey option not specified will be automatically bound to the first unreserved data field.For each data field not bound to any column a new column will be generated and added to the end of the columns collection. To prevent automatic binding of a column to a data field set its dataKey option to null. Note: columns autogeneration process affects the options of columns and the columns option itself.
関連トピック

参照

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