FlowingCode / GridHelpers

Several grid recipes for Vaadin 23+ (and 22), ready to use. DOES NOT require extending Grid.
https://addonsv23.flowingcode.com/grid-helpers
Apache License 2.0
12 stars 1 forks source link

setEmptyGridLabel not working when setting grid's items #102

Closed flang closed 12 months ago

flang commented 12 months ago

Steps to reproduce:

  1. Set grid items grid.setItems(List.of());
  2. Set the empty label component GridHelper.setEmptyGridLabel(grid, new Label("No records found"));
  3. Label indicating no records found should be displayed but it's not.