Checkbox Selection in ASP.NET MVC Tree Grid Component
29 Dec 20255 minutes to read
Checkbox selection provides an option to select multiple treegrid records with help of checkbox in each row.
To render the checkbox in each treegrid row, you need to use checkbox column with type as checkbox using the column Type property.
@(Html.EJS().TreeGrid("CheckboxSelection")
.AllowPaging()
.DataSource((IEnumerable<object>)ViewBag.datasource)
.AllowSelection()
.Columns(col =>
{
col.Type("checkbox").Width("50").Add();
col.Field("TaskId").HeaderText("Task ID").Width(110).TextAlign(Syncfusion.EJ2.Grids.TextAlign.Right).Add();
col.Field("TaskName").HeaderText("Task Name").Width(210).Add();
col.Field("StartDate").HeaderText("Start Date").TextAlign(Syncfusion.EJ2.Grids.TextAlign.Right).Format("yMd").Width(210).Add();
col.Field("Duration").HeaderText("Duration").TextAlign(Syncfusion.EJ2.Grids.TextAlign.Right).Width(190).Add();
})
.ChildMapping("Children").TreeColumnIndex(2).Render())public IActionResult Index()
{
var tree = TreeData.GetDefaultData();
ViewBag.datasource = tree;
return View();
}NOTE
By default, selection is allowed by clicking a treegrid row or checkbox in that row. To allow selection only through checkbox, you can set the
CheckboxOnlyproperty ofSelectionSettingsto true.
Selection can be persisted in all the operations using thePersistSelectionproperty ofSelectionSettings.
For persisting selection on the treegrid, any one of the columns should be defined as a primary key using theIsPrimaryKeyproperty ofColumn.
Checkbox selection mode
In checkbox selection, selection can also be done by clicking on rows. This selection provides two types of Checkbox Selection mode which can be set by using the following API CheckboxMode in SelectionSettings. The modes are:
-
Default: This is the default value of thecheckboxMode. In this mode, user can select multiple rows by clicking rows one by one. -
ResetOnRowClick: InResetOnRowClickmode, when user clicks on a row it will reset previously selected row. Also you can perform multiple-selection in this mode by press and hold CTRL key and click the desired rows. To select range of rows, press and hold the SHIFT key and click the rows.
@(Html.EJS().TreeGrid("CheckboxSelection")
.AllowPaging()
.DataSource((IEnumerable<object>)ViewBag.datasource)
.AllowSelection()
.Columns(col =>
{
col.Type("checkbox").Width("50").Add();
col.Field("TaskId").HeaderText("Task ID").Width(110).TextAlign(Syncfusion.EJ2.Grids.TextAlign.Right).Add();
col.Field("TaskName").HeaderText("Task Name").Width(210).Add();
col.Field("StartDate").HeaderText("Start Date").TextAlign(Syncfusion.EJ2.Grids.TextAlign.Right).Format("yMd").Width(210).Add();
col.Field("Duration").HeaderText("Duration").TextAlign(Syncfusion.EJ2.Grids.TextAlign.Right).Width(190).Add();
})
.ChildMapping("Children").SelectionSettings(select => select.CheckboxMode(Syncfusion.EJ2.Grids.CheckboxSelectionType.ResetOnRowClick))
.TreeColumnIndex(2).Render())public IActionResult Index()
{
var tree = TreeData.GetDefaultData();
ViewBag.datasource = tree;
return View();
}Checkbox Selection feature is intended for row selection only; it is not compatible with cell selection mode.
Conditional row selection
The TreeGrid supports conditional row selection through the isRowSelectable callback. This allows selection to be controlled by custom business logic, ensuring that only rows meeting specific conditions can be selected. The callback receives each row’s data and returns “true” to allow selection or “false” to prevent it.
Local data: The callback runs once when the TreeGrid initializes and evaluates all records because the full dataset is already available on the client.
Remote data: The callback runs only for the rows displayed on the current page when the TreeGrid first loads. It runs again whenever the TreeGrid fetches new data such as during paging, filtering, or sorting to re-evaluate the newly visible rows.
In the following sample, selection is disabled for rows where the “Progress” column has the value “Completed”.
@(Html.EJS().TreeGrid("PartialSelection")
.EnableVirtualization(true)
.DataSource((IEnumerable<object>)ViewBag.datasource)
.AllowSelection()
.SelectionSettings(sel => sel.PersistSelection(true)).IdMapping("TaskID")
.ParentIdMapping("ParentID").TreeColumnIndex(1).IsRowSelectable("isRowSelectable")
.Columns(col =>
{
col.Type("checkbox").Width(60).Add();
col.Field("Task").HeaderText("Task").Width(300).Add();
col.Field("TaskID").Visible(false).IsPrimaryKey(true).Add();
col.Field("AssignedTo").HeaderText("Assigned To").Width(140).Add();
col.Field("StartDate").HeaderText("Start").Format("yMd").Width(180).Add();
col.Field("DueDate").HeaderText("Due").Format("yMd").Width(180).Add();
col.Field("Priority").HeaderText("Priority").Width(90).Add();
col.Field("Progress").HeaderText("Status").Width(90).Add();
}).Render())
<script>
function isRowSelectable(data,columns) {
return data.Progress !== 'Completed';
}
</script>public IActionResult Index()
{
var tree = TreeData.GetTaskData();
ViewBag.datasource = tree;
return View();
}NOTE
You can refer to our
ASP.NET MVC Tree Gridfeature tour page for its groundbreaking feature representations. You can also explore ourASP.NET MVC Tree Grid exampleto knows how to present and manipulate data.