New to Telerik UI for ASP.NET MVC? Download free 30-day trial

Signature Form Integration

The Telerik UI Signature for ASP.NET MVC allows you to integrate it inside a Telerik UI Form for ASP.NET MVC. Furthermore, you can validate the Signature before the form is submitted.

To integrate the Signature inside a Telerik UI Form for ASP.NET MVC component, add the Items.Editor configuration of the form field to Signature.

    @(Html.Kendo().Form<Kendo.Mvc.Examples.Models.Form.FormItemsViewModels>()
        .Name("exampleForm")
        .Items(items =>
        {
            items.AddGroup()
                .Label("Form")
                .Items(i =>
                {
                    i.Add()
                        .Field(f => f.Signature)
                        .Label(l => l.Text("Signature:").Optional(true))
                        .Editor(e => e.Signature());

                });
        })
    )

See Also

In this article