Hi,
I am new to this grid thing and would like to know if it is possible to define the row id using my own provided id (when the data was first loaded).
My use case is like this, we load the grid for users to do their data entry, the rows and columns are pre-defined, and they are not able to add new rows or columns, they simply fill in the data on this spreadsheet.
I already tried to use the dataschema to define the data model and it was able to send the field name to the server, but for the id field, it is still shows the row index, e.g. {“data”:[[0,“score1”,“4”,“2”]]}
What I want is something like this {“data”:[[“my_preloaded_id”,“score1”,“4”,“2”]]}
Is it able to do this?
Thanks