How to set primary key column as read only on adding in JS Grid?
In certain cases, we may want to have the primary key column value also in read only mode while adding a new record in grid.
Solution
We can set a column to read only mode using the AllowEditing property of the Grid Columns. But if the column is primaryKey column, then the column won’t be disabled even if AllowEditing property is set as false.
Instead you can use the IsIdentity property of the grid columns. Please refer to the below online api reference link.
https://help.syncfusion.com/js/api/ejgrid#members:columns-isidentity
The column which is specified as IsIdentity will be in readonly mode both while editing and adding a record. Also, auto incremented value is assigned to that IsIdentity column.
Conclusion
I hope you enjoyed learning about how to set the primary key column as read-only on adding in JS Grid.
You can refer to our JavaScript Grid feature tour page to learn about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our JavaScript Grid example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!