How to remove resource unit column from the resource tab in add/edit dialog
In jQuery Gantt it is possible to customize the resource section in add/edit dialog. This document will explain how to remove the resource unit column in the resource tab in add/edit dialog by using actionBegin client-side event. This event will be triggered before the dialog initialization on toolbar add/edit icon click action. The following code example will explain how to hide the resource unit column in Gantt dialog.
<div id="GanttContainer" style="height:450px;width:700px"></div>
<script type="text/javascript">
$("#GanttContainer").ejGantt({
//…
actionBegin: function (args) {
if (args.requestType == "openEditDialog") {
treeObj = $("#treegrid" + this._id + "resourceEdit").data("ejTreeGrid")
treeObj.hideColumn("Unit")
} else {
if (args.requestType == "OpenAddDialog") {
treeObj = $("#treegrid" + this._id + "resourceAdd").data("ejTreeGrid")
treeObj.hideColumn("Unit")
}
}
},
});
</script>
The below screenshots depict the dialog UI before and after removing the resource unit column in add/edit dialog


You can also find a sample for customizing the resource tab in Gantt dialog here.