When I bind my datagrid to a list of objects that is referenced from one of our nuget packages the edit mode jumps out of edit as soon as I leave the field I'm editing. But when I use a local object class (within the blazor project) it works just fine.
Have anyone experienced this before or know anything about it?
This could happen if something changes the value to which the Data property of your RadzenDataGrid is set. Make sure it isn't an expression e.g. <RadzenDataGrid Data="@someProperty.ToList()". This will be evaluated on every Blazor lifecycle tick and rebind the data grid.
Finally found the problem. The problem was that my binding model class was declared as a "record" and not a "class". Seems that the grid can't handle record objects when using inline editing.