New to Telerik UI for ASP.NET MVC? Start 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:
| Option | Description | When to Use |
|---|---|---|
| Templates | Specify a custom template for rendering the Form buttons | When you need complete control over buttons appearance, layout, or behavior |
| Clear Button Visibility | Toggles the visibility of the default Clear button | When 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)
)