Gustavo Navarro
Gustavo Navarro
Projects using Blazor WASM must manually update the key value of the inserted row in the client side. I´ve updated the samples and [documentation](https://github.com/gustavnavar/Grid.Blazor/blob/master/docs/blazor_client/Nested_crud.md#showing-the-update-form-just-after-inserting-a-row) to explain how to use this...
PRs are welcome Thanks
You can download the database from https://github.com/gustavnavar/Grid.Blazor/blob/master/GridMvc.Demo/App_Data
Alternatively, if you prefer to install a fresh version of the database you can perform the following steps: - run this script from Microsoft web to create a new database:...
You can use a model referencing both the Car object and the foreign key: ``` public class Car { [Key] public Guid Id { get; set; } public string Name...
GridBlazor package version 2.1.4 has the following behavior: - WASM - Odata projects use always the client time zone (take a look at https://gridblazorodata.azurewebsites.net/gridsample demo) - WASM with GridMvcCore back-end...
I will keep this issue as open. I will try to add this feature in the future
If you use the ```.Selectable(true)``` method (or ```.Selectable(true,false, ...)```) rows should be deselected after a new data load: https://github.com/gustavnavar/Grid.Blazor/blob/master/docs/blazor_client/Selecting_row.md#selectable-method
If new data is loaded on the grid using paging, filtering or sorting buttons of the grid, all selected rows are cleared automatically. If you want to load new data...
I can not reproduce this error. But it seems that you have added 2 columns with the same name in the column definition. Can you remove the name the column...