New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

page

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:

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