RadGrid for ASP.NET AJAX

RadControls for ASP.NET AJAX

Method which triggers paging action with page command passed as an argument. All server-side paging capabilities of RadGrid are applicable here as well. See the topic describing the fireCommand() client-side method for further details.

page(pageCommand)

pageCommand

String

The page command that will be executed.

Example:

CopyJavaScript
function TriggerPageCommand() {
    var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
    masterTable.page("Next");
}