Is there a way to clear the content of a cell and save it as an empty field? I attempted to specify my field in the parameter update map using the following code:
((data.Value) ? '","Value": "' + data.Value : "") +
and in the schema like this:
"Value": {
type: "number",
parse: function (value) {
return (value === null || undefined) ? null : value;
},
nullable: true
},
However, I keep getting the last saved value. I have tried various approaches to fix this issue but so far nothing has worked - either it saves null as a string or something similar.