Grid Select All checkbox does not run properly

Hi,

i have a lazy loading grid,

enabled the select all Check box

GridMultiSelectionModel<GeneratorItem> selectionModel =
					    (GridMultiSelectionModel<GeneratorItem>) grid
					        .setSelectionMode(SelectionMode.MULTI);

selectionModel.setSelectAllCheckboxVisibility(SelectAllCheckboxVisibility.VISIBLE);

When i click on the select all check box all the record are selected, but the interface is not updated, the rows remain unselected.
If i update the dhe data provider than the rows are shown as selected

filteringDataProvider.refreshAll();

any hint on this? It seams a bug.

Thanks

This seems like a bug, I can’t reproduce your issue with a multiselectgrid, a callback dataprovider, and SelectAllCheckboxVisibility.VISIBLE. (Vaadin 14.3.0)

What version are you using?

Kaspar Scherrer:
This seems like a bug, I can’t reproduce your issue with a multiselectgrid, a callback dataprovider, and SelectAllCheckboxVisibility.VISIBLE. (Vaadin 14.3.0)

What version are you using?

Hi, using 14.3.7 version.

Thanks