The ASP.NET MVC Checkbox is a custom checkbox-type HTML5 input control for selecting one or more options from a list of predefined choices. It supports an indeterminate state, different sizes, custom labels and positions, and UI customization.
A single checkbox consists of toggle states for performing check and uncheck actions. To prevent the toggling of a checkbox value, you can use the disable option.
The ASP.NET MVC Checkbox control also features a built-in indeterminate state for option selections.
You can use different checkbox sizes, default and small, as required in your application.
Add a label to define the ASP.NET MVC Checkbox control’s caption. You can caption the checkbox and position the label either before or after the checkbox.
The checkbox UI (frame and icons) can be completely customized.
The ASP.NET MVC Checkbox control supports built-in themes such as Bootstrap 5, Tailwind CSS, Fluent, high contrast, and more. Users can customize these built-in themes or create new themes to achieve the desired look and feel either by simply overriding SASS variables or using the Theme Studio application.
The Checkbox component is also available in Blazor, React, Angular, JavaScript and Vue frameworks. Check out the different Checkbox platforms from the links below,
Easily get started with the ASP.NET MVC Checkbox using a few simple lines of C# code example as demonstrated below. Also explore our ASP.NET MVC Checkbox Example that shows you how to render and configure a Checkbox in ASP.NET MVC.
@using Syncfusion.EJ2
@section ControlsSection{
<div class="control-section">
<div class="checkbox-control">
<div class="row">
@Html.EJS().CheckBox("checked").Change("onChange")
.Checked(true).Label("CheckBox:true").Render()
</div>
<div class="row">
@Html.EJS().CheckBox("disabled").Checked(true).Label("CheckBox,Disabled").Disabled(true).Render()
</div>
<div class="row">
@Html.EJS().CheckBox("indeterminate").Indeterminate(true).Disabled(true).Label("Intermediate,Disabled").Render()
</div>
</div>
</div>
}
<script>
function onChange(args) {
this.label = 'CheckBox: ' + args.checked;
}
</script>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace EJ2MVCSampleBrowser.Controllers.Button
{
public partial class ButtonController : Controller
{
public ActionResult Checkbox()
{
return View();
}
}
}
Syncfusion ASP.NET MVC Checkbox provides the following features:
You can find our ASP.NET MVC Checkbox demo here.
No, this is a commercial product and requires a paid license. However, a free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
A good place to start would be our comprehensive getting started documentation.
Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion is proud to hold the following industry awards.