Maximize productivity with
30% off* for a limited time
using BOOSTDEV30.
Includes 3- and 5-packs.
*Some exclusions may apply.New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.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>
|