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

Events

You can subscribe to the Pager's Change event and then use it to further customize the behavior of the Pager.

The example below demonstrates how to use the Change event that the Pager fire when the user interacts with it.

    @(Html.Kendo().Pager()
        .Name("pager")
        .DataSource("dataSource1")
        .HtmlAttributes(new { style="width:850px"})
        .Events(e=>e.Change("onPagerChange"))
    )
    function onPagerChange(e){
        console.log("Pager is navigated to page "+e.sender.page());
    }

Next Steps

See Also

In this article