Getting Started with the Signature
This tutorial explains how to set up a basic Telerik UI for ASP.NET Core Signature component and highlights the major steps in the configuration of the component.
You will initialize a Signature component and change its line color. Then, you will use the events of the UI component. Finally, you can run the sample code in Telerik REPL and continue exploring the components.
Prerequisites
To successfully complete the tutorial, you need a project that is already configured to use the Telerik UI for ASP.NET Core components:
You can use the Telerik REPL playground and skip installing the components on your system and configuring a project.
-
You can prepare a Visual Studio project by following either of these guides:
Creating a new pre-configured project for the Telerik UI for ASP.NET Core components from a project template.
Manually configuring an existing project as described in the First Steps on Windows or First Steps on Mac articles.
1. Prepare the CSHTML File
The first step is to add the required directives at the top of the .cshtml
document:
-
To use the Telerik UI for ASP.NET Core HtmlHelpers:
@using Kendo.Mvc.UI
-
To use the Telerik UI for ASP.NET Core TagHelpers:
@addTagHelper *, Kendo.Mvc
Optionally, you can structure the document by adding the desired HTML elements like headings, divs, paragraphs, and others.
@using Kendo.Mvc.UI
<h4>Signature with Color</h4>
<div>
</div>
@addTagHelper *, Kendo.Mvc
<h4>Signature with Color</h4>
<div>
</div>
2. Initialize the Signature
Use the Signature HtmlHelper or TagHelper to add the component to a page:
- The
Name()
configuration method is mandatory as its value is used for theid
and thename
attributes of the Signature element. - The
Width()
setting allows you to declare the width size of the component. - The
Height()
setting allows you to declare the height size of the component. - The
Color()
configuration allows you define the color of the Signature line.
@using Kendo.Mvc.UI
<h4>Signature with Color</h4>
<div>
@(Html.Kendo().Signature()
.Name("signature")
.Color("crimson")
.Width(600)
.Height(340))
</div>
@addTagHelper *, Kendo.Mvc
<h4>Signature with Color</h4>
<div>
<kendo-signature name="signature" color="crimson"
width="600" height="340">
</kendo-signature>
</div>
3. Handle a Signature Event
The Signature component provides convenient events for implementing your desired logic. In this tutorial, you will use the exposed Change()
event to log a new entry in the browser's console.
@using Kendo.Mvc.UI
<script>
function onChange() {
console.log("Signature has changed!");
}
</script>
<h4>Signature with Color</h4>
<div>
@(Html.Kendo().Signature()
.Name("signature")
.Color("crimson")
.Width(600)
.Height(340)
.Events(e => e.Change("onChange"))
)
</div>
@addTagHelper *, Kendo.Mvc
<script>
function onChange() {
console.log("Signature has changed!");
}
</script>
<h4>Signature with Color</h4>
<div>
<kendo-signature name="signature" color="crimson"
width="600" height="340" on-change="onChange">
</kendo-signature>
</div>
4. (Optional) Reference Existing Signature Instances
You can reference the Signature instances that you have created and build on top of their existing configuration:
-
Use the
id
attribute of the component instance to establish a reference.<script> var signatureReference = $("#signature").data("kendoSignature"); // signatureReference is a reference to the existing Signature instance of the helper. </script>
-
Use the Signature client-side API to control the behavior of the widget. In this example, you will use the
enable
method to disable the Signature.<script> var signatureReference = $("#signature").data("kendoSignature"); // signatureReference is a reference to the existing Signature instance of the helper. signatureReference.enable(false); </script>
Explore this Tutorial in REPL
You can continue experimenting with the code sample above by running it in the Telerik REPL server playground: