Hi Nikhil,
Thank you for contacting Syncfusion support.
Before proceeding please share us the following details.
1. Share your grid rendering code example.
2. Ensure you have enabled isPrimaryKey property in primarykey column of Grid. The editing is performed based on the primary key column but you have missed to refer isPrimaryKey property in column.
<ej-grid id="Grid" [dataSource]="gridData" [editSettings]="editSettings" [toolbarSettings]="toolbarSettings">
<e-columns>
<e-column field="EmployeeID" [isPrimaryKey]="true"></e-column>
<e-column field="FirstName"></e-column>
<e-column field="LastName" [allowEditing]="false"></e-column>
</e-columns>
</ej-grid> |
3. In which scenario you want get the particular cell value?
4. If possible, provide an issue reproducing sample or hosted link or replicate the issue in the attached sample.
Regards,
Jayaprakash K.