Hi Neo,
Thanks for contacting Syncfusion support.
You can use the column.allowEditing property to disable edit option for a column.
Regards,Madhu Sudhanan P
Hi Team,
We have customized datagrid, and placed button in one of column, in edit mode that button gets disappeared even if we apply allowEditing to false.
How to handle this and keep button as it is.
Regards,
Deepak
<e-column
headerText="Employee Image"
width="150"
textAlign="Center"
[allowEditing]="false"
>
<ng-template #template>
<button ejs-button>Normal</button>
</ng-template>
<ng-template #editTemplate>
<button ejs-button [disabled]="true">Normal</button>
</ng-template>
</e-column>
|