Releases: Mewriick/Blazor.FlexGrid
Releases · Mewriick/Blazor.FlexGrid
Support .NET 5.0
Breaking change:
- If you are using lazy loading scenario you need to provide
BaseServerAddress
during configuration
Example:
builder.Services.AddFlexGrid(
cfg =>
{
cfg.ApplyConfiguration(new WeatherForecastGridConfiguration());
cfg.ApplyConfiguration(new CustomerGridConfiguration());
cfg.ApplyConfiguration(new OrderGridConfiguration());
},
options =>
{
options.IsServerSideBlazorApp = false;
options.UseAuthorizationForHttpRequests = true;
options.BaseServerAddress = builder.HostEnvironment.BaseAddress;
}
)
Fix bugs
Fix render BlazorComponents
Add support for Blazor 3.2.0-preview1
release/0.12.0 Merge branch 'feature/ImproveCss'
Delete confirm dialog
Delete confirm dialog added. Default behavior is set to show dialog. If you want to disable dialog please call in configuration
builder.DoNotUseDeleteConfirmDialog();
Triggers feature
See the wiki
Save row fix
release/0.10.2 Version bump
Support .NET Core 3.1 Preview 4
Big thanks to @dazinator
Breaking change with static assest in Blazor WASM is described in README
Support .NET Core 3.0 Preview 8
release/0.8.7 Update README.md
Edit column template
Add possibility to create custom component for editing column value.
https://github.com/Mewriick/Blazor.FlexGrid/wiki/Custom-components-in-column