Completed
Last Updated: 20 Nov 2024 14:19 by ADMIN
Release 2025 Q1 (Feb)
Steve
Created on: 18 Nov 2024 08:41
Category: Form
Type: Feature Request
4
Expose a clearButton API configuration that will remove or add the clear button from the Form

Enhancement

Expose a clearButton API configuration that will remove or add the clear button from the Form

Overview

Currently, in order to omit the Clear Button from the Form, a programmatical or styling approach should be embarked. However, based on demand, client would find it more intuitive if this operation can be performed through a built-in configuration.

E.g:

<script>
    $("#myForm").kendoForm({
        formData: {
            ID: 1,
            Name: "Ivan",
            Address: "Sofia"
        },
        clearButton: false,
    });
</script>
0 comments