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

    Signature Form Integration

    The Kendo UI for jQuery Signature allows you to integrate it inside a Kendo UI for jQuery Form. Furthermore, you can validate the Signature before the form is submitted.

    To integrate the Signature inside a Kendo UI Form widget, set the items.editor property of the form field to Signature.

    $("#exampleform").kendoForm({
                    orientation: "vertical",
                    formData: {
                        Signature: ""
                    },
                    items: [{
                        type: "group",
                        label: "Registration Form",
                        items: [
                            // Set the editor to "Signature".
                            { field: "Signature", label: "Signature:", editor: "Signature", validation: { required: true } }
                        ]
                    }],
                });