GridView for ASP.NET Web Forms
totalRows オプション
jQuery.wijmo.c1gridview 名前空間 > options タイプ : totalRows オプション
Gets or sets the virtual number of items in the wijgrid and enables custom paging. Setting option to a positive value activates custom paging, the number of displayed rows and the total number of pages will be determined by the totalRows and pageSize values.
シンタックス
//値を取得する
var value; //タイプ: number
value = $(".selector").c1gridview("option", "totalRows");

//値を設定します
var newValue; //タイプ: number
$(".selector").c1gridview("option", "totalRows", newValue);
var totalRows : number;
使用例
$("#element").wijgrid({ totalRows: -1 });
解説
In custom paging mode sorting, paging and filtering are not performed automatically. This must be handled manually using the sorted, pageIndexChanged, and filtered events. Load the new portion of data there followed by the ensureControl(true) method call.
関連トピック

参照

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