New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
page
Method which triggers paging action with page command passed as an argument. See the topic describing the fireCommand method for further details.
function page(pageCommand) | ||
---|---|---|
pageCommand | Integer | The page command that will be executed. |
ASP.NET
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
<script type="text/javascript">
function GoToNextPage() {
var listView = $find("<%= RadListView1.ClientID %>");
listView.page("Next");
}
function GoToPage() {
var listView = $find("<%= RadListView1.ClientID %>");
listView.page(3);
}
</script>
</telerik:RadCodeBlock>