Hi Venkatesh,
Greetings from the Syncfusion support
We checked your query with provided the information and we can bind the custom input component in the Grid edit mode using cellEditTemplate since we cannot prevent that editing option using column.allowEditing as false it is default behavior.
Based on your query we suggest you to use column.isIdentity property it is read only state while editing it will overcome the reported problem in your sample.
Please refer the below code example and sample for more information.
|
[index.js]
<GridComponent
dataSource={employeeData}
editSettings={this.editSettings}
toolbar={this.toolbar}
allowSorting={true}
>
<ColumnsDirective>
. . . .
<ColumnDirective
field="HireDate"
headerText="Hire Date"
width="135"
isIdentity={true}
format="yMd"
editType="datepickeredit"
edit={this.shipCityParams}
textAlign="Right"
/>
. . . .
</ColumnsDirective> |
Please get back to us, if you need further assistance.
Regards,
Balaji Sekar