Skip to content

Releases: Mewriick/Blazor.FlexGrid

Support .NET 5.0

17 Nov 16:09
Compare
Choose a tag to compare
  • Support NET 5.0
  • Fix issues #115 , #116

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

19 Oct 15:34
Compare
Choose a tag to compare

Fix issue #113
Fix issue #114

Fix render BlazorComponents

21 Jul 07:38
Compare
Choose a tag to compare
  • Fix rendering Blazor components in grid cells. (#111)
  • Add new HasEmptyItemsMessage overload for rendering grid header when items are empty (#112)

Add support for Blazor 3.2.0-preview1

10 Mar 15:42
Compare
Choose a tag to compare
release/0.12.0

Merge branch 'feature/ImproveCss'

Delete confirm dialog

16 Feb 16:17
Compare
Choose a tag to compare

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

12 Jan 09:50
dcbe863
Compare
Choose a tag to compare

Save row fix

05 Jan 10:02
Compare
Choose a tag to compare
release/0.10.2

Version bump

Support .NET Core 3.1 Preview 4

10 Dec 17:32
Compare
Choose a tag to compare

Big thanks to @dazinator
Breaking change with static assest in Blazor WASM is described in README

Support .NET Core 3.0 Preview 8

16 Aug 18:19
a68d206
Compare
Choose a tag to compare
release/0.8.7

Update README.md

Edit column template

07 Aug 16:10
52947dc
Compare
Choose a tag to compare

Add possibility to create custom component for editing column value.
https://github.com/Mewriick/Blazor.FlexGrid/wiki/Custom-components-in-column