messages Object

Configures text messages displayed in the Form. Use it to customize or localize the Form messages.

Example - customize form submit and clear buttons messages

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

<script>
    $("#myForm").kendoForm({
        orientation: "horizontal",
        formData: {
            ID: 1,
            Name: "Ivan"
        },
        items: [{
            field: "Name",
            label: "Name:"
        }],
        messages: {
            submit: "Custom Submit Button Text",
            clear: "Custom Clear Button Text"
        }
    });
</script>
In this article