GridView for ASP.NET Web Forms
allowVirtualScrolling オプション
jQuery.wijmo.c1gridview 名前空間 > options タイプ : allowVirtualScrolling オプション
A value that indicates whether virtual scrolling is allowed. Set allowVirtualScrolling to true when using large amounts of data to improve efficiency. Obsoleted, set the scrollingSettings.virtualization.mode property to "rows" instead.
シンタックス
//値を取得する
var value; //タイプ: boolean
value = $(".selector").c1gridview("option", "allowVirtualScrolling");

//値を設定します
var newValue; //タイプ: boolean
$(".selector").c1gridview("option", "allowVirtualScrolling", newValue);
var allowVirtualScrolling : boolean;
使用例
$("#element").wijgrid({ allowVirtualScrolling: false });
解説
This option is ignored if the grid uses paging, columns merging or fixed rows. This option cannot be enabled when using dynamic wijdatasource.
関連トピック

参照

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