New to Telerik UI for ASP.NET MVCStart a free 30-day trial

Buttons

The Buttons functionality of the Telerik UI for ASP.NET MVC Form allows you to alter both the Submit and Clear buttons.

Setting the Buttons Template

The Form allows you to specify a template which will be used for the rendering of the Form buttons.

Razor
     @(Html.Kendo().Form()
          .Name("form")
          .ButtonsTemplate("<button>Submit</button>")
     )

Toggling the Clear Button

As of the 2025 Q1 release, the Form enables you to toggle the visibility state of the Clear Button.

Razor
     @(Html.Kendo().Form()
          .Name("form")
          .ClearButton(false)
     )

See Also