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

Buttons

Updated on Nov 4, 2025

By default, the Form renders Submit and Clear buttons. To customize the default buttons, use the following customization options:

OptionDescriptionWhen to Use
TemplatesSpecify a custom template for rendering the Form buttonsWhen you need complete control over buttons appearance, layout, or behavior
Clear Button VisibilityToggles the visibility of the default Clear buttonWhen you want to hide the default Clear button or implement a custom clearing functionality

Setting the Buttons Template

The Form allows you to specify a template that will render of the Form Submit and Clear buttons. You can use any of the available ButtonsTemplate* overloads.

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