We have a grid displaying customizable data, recently someone started using the dots on column names and then reported that the grid does not correctly displays the data.
Seems like that by default the grid expect nested data whenever it encounters a dot in a field name, and the same goes for updating data.
For the field with name "field.name" I would expect the grid to send update as in (pseudo-code trying to explain myself)
instead what the client sends to the server is
Is there a way to disable such behavior?
Seems like that by default the grid expect nested data whenever it encounters a dot in a field name, and the same goes for updating data.
For the field with name "field.name" I would expect the grid to send update as in (pseudo-code trying to explain myself)
Code:
... data: { "field.name": "new value"}
Code:
... data: { "field" : { "name" : "new value" }}
Is there a way to disable such behavior?
Comment