ASP.NET MVC CheckBox Overview

Telerik UI for ASP.NET MVC Ninja image

The CheckBox is part of Telerik UI for ASP.NET MVC, a professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.

The Telerik UI CheckBox HtmlHelper for ASP.NET MVC is a server-side wrapper for the Kendo UI DataSource widget.

The Telerik UI CheckBox for ASP.NET MVC is based on the conventional HTML checkbox element. It allows you to add more customizable checkboxes to your application.

Initializing the CheckBox

The following example demonstrates how to define the CheckBox.

    @(Html.Kendo().CheckBox()
        .Name("eq1")    
        .Checked(true)
        .Label("My Telerik Checkbox")
    )

Functionality and Features

  • Appearance—The CheckBox enables you to customize its appearance based on your requirements.
  • Events—The CheckBox allows you to handle its events and implement custom functionality.

To learn more about the appearance, anatomy, and accessibility of the CheckBox, visit the Progress Design System documentation—an information portal offering rich component usage guidelines, descriptions of the available style variables, and globalization support details.

Two-way Binding

To use the Telerik UI Checkbox as an editor for a field in your C# Model, declare by using the CheckboxFor helper:

    @(Html.Kendo().CheckBoxFor(m=>m.BooleanFieldName)
        .Label("Editable Checkbox"))
    )

Next Steps

See Also

In this article