New to Telerik UI for ASP.NET MVC? Start a 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.
Razor
@(Html.Kendo().Pager()
.Name("pager")
.DataSource("dataSource1")
.HtmlAttributes(new { style="width:850px"})
.Events(e=>e.Change("onPagerChange"))
)