Pageable Combobox on Dialog

Hi,

I’m experiencing a strange behaviour on a combobox. The combobox is binded to a PageableDataProvider. The combobox is placed on a dialog (As seen in the Bakery App).
When I open the dialog for the first time, all combo’s are filled correctly. Clicking on a combo opens the combo, displays the loading symbol and then eventually shows all the items. Then the dialog is closed and reopened.
When the dialog is reopened and a combobox is clicked, the loading symbol appears, but no data is shown. Closing the dialog and reopening it fixes the problem. Then closing the dialog and reopening results in the same problem.

Any ideas what could be the source of this issue? Any suggestions on how to debug this?

update: This workaround seems to fix the issues,but it isn’t a permanent solution

        projects.addFocusListener(listener->{
            projects.setPageSize(projects.getPageSize());
        });

Kind regards,
Thijs

Hi,

if you have a small example that reproduces the issue, I’d recommend submitting a ticket here: https://github.com/vaadin/vaadin-dialog-flow/issues

-Olli