Gustavo Navarro
Gustavo Navarro
A way to make it work is to define a database view as described bellow. In your case the view should be like this (I assume your table name is...
Package version 3.4.0 supports this feature. You can find more info [here](https://github.com/gustavnavar/Grid.Blazor/blob/master/docs/blazor_client/Totals.md#calculated-totals) The samples also include this functionality
Thanks for your suggestion, The documentation has been updated.
You can use ```IQueryable``` as ```GridCoreServer``` parameter, because ```IQueryable``` has inheritance of ```IEnumerable```. If the number of records is high, I would use pagination: ```c# IGridServer server = new GridCoreServer(repository.GetAll(),...
I can not reproduce this error. I've used several filters on the demo web and no issues where detected https://gridblazor.azurewebsites.net/
You can apply the 000000000000 format to the D column directly in Excel
I've updated the demo database. It has a database function named "RemoveDiacritics" to [Disable diacritics distinction](https://github.com/gustavnavar/Grid.Blazor/blob/master/docs/blazor_server/Filtering.md#disable-diacritics-distinction). If you pull the github repository you will get new database
No, editing is only supported using CRUD forms
The sample back-end (SQL server + OData) sends all records in 1.5 seconds. It's composed by a small server running the .Net Core app and a separated SQL server, also...
Have you tried to use the ```SetTableLayout``` method to configure grid dimensions? The documentation is here: https://github.com/gustavnavar/Grid.Blazor/blob/master/docs/dotnetcore/Grid_dimensions.md And there is a sample here: https://github.com/gustavnavar/Grid.Blazor/blob/master/GridMvc.Demo/Pages/GridPage.cshtml.cs