asp.net.ph

GridView.EnableSortingAndPagingCallbacks Property

System.Web.UI.WebControls Namespace   GridView Class


.NET Framework version 2.0

Sets or retrieves a value specifying whether client-side callbacks are used for sorting and paging operations.

Syntax


Inline <asp:gridview enablesortingandpagingcallbacks = true | false ... >
Script GridView.EnableSortingAndPagingCallbacks [ = true | false ]

Property Value

This property accepts or returns only a boolean value: true to use client-side callbacks for sorting and paging operations; otherwise, false. Default value is false.

Remarks

By default, when a sorting or paging operation is performed, the GridView control posts back to the server to perform the operation. When the EnableSortingAndPagingCallbacks property is set to true, a service is called on the client to perform sorting and paging operations, which eliminates the need to post back to the server.

NOTE: Not all browsers support this feature. To determine whether a browser supports this feature, use the SupportsCallback property.

All columns in the Columns collection must support callbacks for this feature to work. If the Columns collection contains a column that does not support callbacks, such as TemplateField, a NotSupportedException exception is raised.

Example

The following example demonstrates how to set the EnableSortingAndPagingCallbacks property at design time to enable client-side callbacks for sorting and paging operations.

Run Sample | View Source
See Also

GridView Members   AllowPaging   AllowSorting Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph