Intersoft WebGrid Documentation
PagingMode Enumeration
See Also  Send Feedback
ISNet.WebUI.WebGrid Namespace : PagingMode Enumeration






Value representing how the data should be retrieved in WebGrid.

Syntax

Visual Basic (Declaration) 
Public Enum PagingMode 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As PagingMode
C# 
public enum PagingMode : System.Enum 
Delphi 
public enum PagingMode = class(System.Enum)
JScript 
public enum PagingMode extends System.Enum
Managed Extensions for C++ 
__value public enum PagingMode : public System.Enum 
C++/CLI 
public enum class PagingMode : public System.Enum 

Members

MemberDescription
ClassicPagingClassicPaging is defined by a set of navigation controls (such as First, Previous, Next and Last) to control the active page. In classic paging, the total number of visible rows is a constant number.
NoneNo paging. All rows will be loaded on first page load.
VirtualLoadOnly a number of rows that specified in VirtualPageSize will be loaded.

Remarks

WebGrid introduces a new concept in DataGrid paging that allow users to retrieve data when it is needed. The feature called 'VirtualLoad' enables true data "load on demand" mechanism which automatically retrieves data as users scroll forward. The new concept has replaced the old data paging mechanism in web applications that use navigation bar which is less effective since users need to refresh page in order to get more data and become unfeasible when data grows larger as business growth.

The implementation of the new paging concept - VirtualLoad - provides an effective approach for users as more data will retrieved from server transparently. WebGrid will initially loads a number of rows specified in VirtualPageSize. This results in faster page rendering to client, less bandwith taken and reduced server's workload. Integrated with Intersoft® WebCommonControl architecture that allows data to be retrieved without page postback has fully supported the feature to work perfectly in web-based environment. The combination of the VirtualLoad feature and WebCommonControl architecture resulting in a major performance improvement since the architecture uses its own ViewState implementation that only send required information to server and only pass back the UI elements that need to be rendered.

The key design of the feature is to enable a fast, effective and efficient data presentation when work in large DataSource's web applications. Developers are recommended to turn on VirtualLoad paging mode most of the times.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         ISNet.WebUI.WebGrid.PagingMode

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

©2012 Intersoft Solutions Corp. All Rights Reserved.