Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CCDM: IronList won't work if eagerServerLoad is on #6946

Closed
qtdzz opened this issue Nov 14, 2019 · 0 comments
Closed

CCDM: IronList won't work if eagerServerLoad is on #6946

qtdzz opened this issue Nov 14, 2019 · 0 comments
Labels
bug hilla Issues related to Hilla
Milestone

Comments

@qtdzz
Copy link
Contributor

qtdzz commented Nov 14, 2019

Step to reproduce

  1. Take skeleton-starter-flow branch ccdm
  2. Add the following snippet to the MainView constructor
        IronList<String> ironList = new IronList<>();
        ironList.setHeight("100px");
        Stream<String> items = IntStream.range(0, 100)
                .mapToObj(i -> ("Item " + i));
        ironList.setItems(items);
        ironList.setId("ironlist");
        add(ironList);
  1. Run the application with mvn jetty:run -Dvaadin.eagerServerLoad=true
  2. Go to http://localhost:8080

Actual

image.png

Expected

Works as usual if eagerServerLoad=false

This issue also happens for other components, e.g. order-card in bakery but I didn't check what exact component causes the problem

@qtdzz qtdzz transferred this issue from vaadin/router Nov 14, 2019
@qtdzz qtdzz added the hilla Issues related to Hilla label Nov 14, 2019
@qtdzz qtdzz changed the title IronList won't work if eagerServerLoad is on CCDM: IronList won't work if eagerServerLoad is on Nov 14, 2019
@qtdzz qtdzz added the bug label Nov 15, 2019
@vlukashov vlukashov added this to the CCDM MVP milestone Nov 19, 2019
@qtdzz qtdzz closed this as completed Nov 22, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug hilla Issues related to Hilla
Projects
None yet
Development

No branches or pull requests

2 participants