Getting Started with the CheckBox
This tutorial explains how to set up a basic Telerik UI for ASP.NET MVC CheckBox and highlights the major steps in the configuration of the component.
You will initialize a CheckBox component with explicitly defined messages depending on its check
state, and then change its appearance. Finally, you will learn how to handle the events of the CheckBox.
Prerequisites
To successfully complete the tutorial, you need a project that is already configured to use the Telerik UI for ASP.NET MVC components:
To create a new pre-configured project for the Telerik UI for ASP.NET MVC components, you can use a project template.
To manually configure an existing project by using NuGet, see the Adding Telerik UI through NuGet.
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 MVC HtmlHelpers:
@using Kendo.Mvc.UI
Optionally, you can structure the document by adding the desired HTML elements like headings, divs, and paragraphs.
@using Kendo.Mvc.UI
<h4>CheckBox with a placeholder</h4>
<div>
</div>
2. Initialize the CheckBox
Use the CheckBox HtmlHelper 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 CheckBox element.
@(Html.Kendo().CheckBox()
.Name("checkbox")
)
3. Configure the Label
The next step is to explicitly define the label for the CheckBox. The following example will configure the label functionality.
@(Html.Kendo().CheckBox()
.Name("checkbox")
.Label("My Telerik Checkbox")
)
4. Customize the Appearance of the CheckBox
To change the appearance of the CheckBox, use any of its built-in styling options, for example, Size()
or Rounded()
.
@(Html.Kendo().CheckBox()
.Name("checkbox")
.Label("My Telerik Checkbox")
.Size(ComponentSize.Medium)
.Rounded(BasicRounded.Medium)
)
5. Handle the CheckBox Events
The CheckBox component exposes an event that you can handle and further customize the functionality of the component. In this tutorial, you will use the Change
event to display a popup message when the value of the CheckBox changes through user interaction.
@(Html.Kendo().CheckBox()
.Name("checkbox")
.Label("My Telerik Checkbox")
.Size(ComponentSize.Medium)
.Rounded(BasicRounded.Medium)
.Events(events => events.Change("onChange"))
)
<script>
function onChange(e){
alert("Changed value: "+ e.sender.value());
}
</script>
6. (Optional) Reference Existing CheckBox Instances
You can reference the CheckBox instances that you have created and build on top of their existing configuration:
-
Use the
.Name()
(id
attribute) of the component instance to get a reference.<script> $(document).ready(function() { var checkBoxReference = $("#checkbox").data("kendoCheckBox"); // checkBoxReference is a reference to the existing CheckBox instance of the helper. }) </script>
-
Set the check state of the component by using the
check()
client-side method.<script> $(document).ready(function() { var checkBoxReference = $("#checkbox").data("kendoCheckBox"); // checkBoxReference is a reference to the existing CheckBox instance of the helper. checkBoxReference.check(true); // Set the initial check state of the component. }) </script>