I have a <ejs-grid ...> which uses <e-data-manager adaptor="UrlAdaptor"..>
When inline updating a row Data goes to the server in json where controller action is executed
public async Task<IActionResult> Update([FromBody] CRUDModel<UserModel> crudModel)
All is working OK. However I have a nullable property in my UserModel say DateTimeOffset? LockoutEnd { get; set; }
When any data is in this filed user wants to null this field via inline row editing.
Unfortunately emptying the cell in the UI will send ,"lockoutEnd":"" json body instead of ,"lockoutEnd":null.
Q1: How can the end user null that cell, and update the row?
Q2: Is there the datagrid usage (keyboard shortcuts) etc documented, explained. I mean, I only know by intuition that Esc cancels the inline row editing and also by intuition that Alt+Insert created a new row for inline editing...