New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Events
The Button exposes a Click()
event that you can handle.
For a complete example on basic Button events, refer to the demo on using the events of the Button.
Razor
@(Html.Kendo().Button()
.Name("button")
.Content("Sample Button")
.Events(e => e.Click("onClick"))
)