Hi Razgovorov,
Thanks for contacting Syncfusion support.
By using “beginEdit” and “endEdit” client side events and “showColumn”,”hideColumn” public methods we can show/hide additional columns, please find the code snippet below.
$("#TreeGridContainer").ejTreeGrid({
//…
beginEdit: beginEdit,
endEdit: endEdit,
}
function beginEdit(args) {
this.showColumn("End Date");
}
function endEdit(args) {
this.hideColumn("End Date");
} |
We have prepared the sample for this, in this sample we have shown/hide columns on editing actions.
Please find the sample from below mentioned location.
Thanks,
Bharath.