New to Kendo UI for jQuery? Start a free 30-day trial

Submit

events

Triggered when the form is submitted.

Event Data

e.sender kendo.ui.Form

The Form instance which fired the event.

e.model Object

The form model.

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

<script>
    $("#myForm").kendoForm({
        formData: {
            ID: 1,
            Name: "Ivan",
            Address: "Sofia"
        },
        items: [{
            field: "Name",
            label: "Name:",
            validation: { required: true }
        }, {
            field: "Address",
            label: "Address:",
            validation: { required: true }
        }],
        submit: function(ev) {
/* The result can be observed in the DevTools(F12) console of the browser. */
            console.log(ev.model);
        }
    });
</script>
<form id="myForm"></form>

<script>
    var form = $("#myForm").kendoForm({
        formData: {
            ID: 1,
            Name: "Ivan",
            Address: "Sofia"
        },
        items: [{
            field: "Name",
            label: "Name:",
            validation: { required: true }
        }, {
            field: "Address",
            label: "Address:",
            validation: { required: true }
        }]
    }).getKendoForm();

    form.bind("submit", function(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
        console.log(e);
    });
</script>
Not finding the help you need?
Contact Support