New to Telerik UI for ASP.NET Core? Start a free 30-day trial
Events
Updated over 6 months ago
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")) )