How does one save data (multiple rows) in a Blazorise DataGrid?
Is there an example of the code including the C# functions to update a database?
How does one save data (multiple rows) in a Blazorise DataGrid?
Is there an example of the code including the C# functions to update a database?
Copyright © 2021 Jogjafile Inc.
Blazorise uses automatic CRUD - but you need to call something like this in code:
to update the database. It only needs to be done once for the whole grid.
I suggest using
EditMode="DataGridEditMode.Inlinefor inline editing.If an error occurs it will show a Reload at the bottom - check your browser developer tools to see what has caused the error.