How to add custom column with check box in .NET WebForms Gantt Chart ?
In Gantt, user can display checkbox column by using load client side event and column template support. The below code snippet explains initializing a custom column with checkbox and saving the editing changes to the data source.
Code snippets:
<form id="form1" runat="server" onsubmit="return false" style="overflow: hidden; padding:0; margin: 0;height:100%;width:100%;"> <ej:Gantt ID="Gantt" runat="server" AllowSelection="true" //... Load="Load" BeginEdit="BeginEdit"> </ej:Gantt>
<script type="text/x-jsrender" id="customColumnTemplate"> <div style="margin-left:20px;"> {{if State}} <input class="customCheckbox" type="checkbox" checked="checked" value="" /> {{else}} <input class="customCheckbox" type="checkbox" value="" /> {{/if}} </div> </script>
<script> function Load() { var columns = this.getColumns(); columns.splice(4, 0, { field: "State", headerText: "State", isTemplateColumn: true, templateID: "customColumnTemplate", width: "80px", }); } // To prevent the string edit while editing check box function BeginEdit(args) { var columnIndex = args.columnIndex; if (columnIndex == 4) { args.cancel = true; } } //Get checked row and select or unselect corresponding records $("#Gantt").on("change", ".customCheckbox", function (e) { var $tr = $(e.target).closest('tr'), ganttObj = $("#Gantt").data("ejGantt"), checkStatus = $(e.target).is(':checked'), $gridRows = ganttObj.getRows(), rowIndex = $gridRows.index($tr), record = ganttObj.model.currentViewData && ganttObj.model.currentViewData[rowIndex]; record["state"] = checkStatus; }); </script>
The following output is displayed for the above code example.
Sample link
A sample to add custom column with check box is available in the following Sample link
I hope you enjoyed learning about how to add custom column with check box in .NET WebForms Gantt Chart.
You can refer to our .NET WebForms Gantt Chart feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!