CodeBeamOrg / CodeBeam.MudBlazor.Extensions

Useful third party extension components for MudBlazor, from the contributors.
https://mudextensions.codebeam.org/
MIT License
348 stars 60 forks source link

Fix select all when virtualize is enabled #385

Closed biegehydra closed 2 weeks ago

biegehydra commented 3 weeks ago

This is all that is needed to fix #296 . The already rendered items will be SetSelected(true) in SelectAllItems. The rest of the items will be set to Selected when they are lazily loaded and registered in Register(MudListItemExtended<T?>? item).

I have tested it visually and it works.

biegehydra commented 3 weeks ago

Hold up, let me make sure the behavior is correct when there is a search query.

biegehydra commented 3 weeks ago

Should behave as expected when when there is a search query now

mckaragoz commented 2 weeks ago

Thanks 🥇