Intersoft ClientUI Documentation
PageDescriptor Property (UXGridView)



Gets or sets the descriptor object that encapsulates the paging related information.
Syntax
<CategoryAttribute("Data Pager")>
Public Property PageDescriptor As PageDescriptor
Dim instance As UXGridView
Dim value As PageDescriptor
 
instance.PageDescriptor = value
 
value = instance.PageDescriptor
[CategoryAttribute("Data Pager")]
public PageDescriptor PageDescriptor {get; set;}
[CategoryAttribute("Data Pager")]
public:
property PageDescriptor^ PageDescriptor {
   PageDescriptor^ get();
   void set (    PageDescriptor^ value);
}
Remarks

Server data operation means that the data operation, such as sorting, filtering and paging; are processed in the server side. In this mode, UXGridView does not handle the data operation by its own. It will simply provide the query information allowing you to process it further to a data service.

To use this mode, you set the QueryOperation property to Server. When this mode is selected, UXGridView will not attempt to perform the data operation on the given data source. Instead, it will store and distribute the query information on several properties such as FilterDescriptors, SortDescriptors and PageDescriptor property. When one of these properties change, the QueryChanged event of the associated QueryDescriptor will be raised. This allows you to streamline the query processing in a centralized function, which is one of the strong benefits of QueryDescriptor. For more information about QueryDescriptor, see QueryDescriptor Overview.

To learn how to perform server-side sorting, filtering and paging using UXGridView, see How-to: Implement Server-side Sorting, Filtering and Paging using UXGridView.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

UXGridView Class
UXGridView Members

Send Feedback