buttonsTemplate String|Function

Specifies the template which is used for rendering the Form buttons.

Example

<form id="myForm"></form>

<script>
    $("#myForm").kendoForm({
        formData: {
            ID: 1,
            Name: "Ivan",
            Address: "Sofia"
        },
        buttonsTemplate: "<button>Submit</button>"
    });
</script>
In this article