Why aren't components inside VerticalLayout aligned vertically in Vaadin 11?












2















I have a view in Vaadin 11, which is displayed at URL like products/X where X is a product identifier.



@Route(value = "products")
public class ProductView extends VerticalLayout implements HasUrlParameter<String> {

public ProductView() {

}

[...]
}


I cannot display any information on this page without having a product, therefore I add all components in the method setParameter:



@Override
public void setParameter(final BeforeEvent beforeEvent,
final String param) {
final Product product = findProduct(param);

if (product == null) {
return;
}
final Text name = new Text(product.getName());
final Text interestRate = new Text(String.format("Ставка: %.2f",
product.getInterestRatePercentPerAnnum()));
final Text duration = new Text(String.format("Срок: %d - %d месяцев",
product.getDurationMonths().getStart(),
product.getDurationMonths().getEndInclusive()));
final Text provider = new Text(String.format("Организация: %s",
product.getProvider().getName()));
final Text description = new Text("<html>Hi there! <b>Bold</b> text</html>");


add(name);
add(interestRate);
add(duration);
add(description);
add(provider);
}


But the various data items are displayd in one line:



Screenshot



This means that for some reason VerticalLayout layous out the components horizontally.



How can I fix it (make sure that each component that I add is displayed on a separate line)?










share|improve this question





























    2















    I have a view in Vaadin 11, which is displayed at URL like products/X where X is a product identifier.



    @Route(value = "products")
    public class ProductView extends VerticalLayout implements HasUrlParameter<String> {

    public ProductView() {

    }

    [...]
    }


    I cannot display any information on this page without having a product, therefore I add all components in the method setParameter:



    @Override
    public void setParameter(final BeforeEvent beforeEvent,
    final String param) {
    final Product product = findProduct(param);

    if (product == null) {
    return;
    }
    final Text name = new Text(product.getName());
    final Text interestRate = new Text(String.format("Ставка: %.2f",
    product.getInterestRatePercentPerAnnum()));
    final Text duration = new Text(String.format("Срок: %d - %d месяцев",
    product.getDurationMonths().getStart(),
    product.getDurationMonths().getEndInclusive()));
    final Text provider = new Text(String.format("Организация: %s",
    product.getProvider().getName()));
    final Text description = new Text("<html>Hi there! <b>Bold</b> text</html>");


    add(name);
    add(interestRate);
    add(duration);
    add(description);
    add(provider);
    }


    But the various data items are displayd in one line:



    Screenshot



    This means that for some reason VerticalLayout layous out the components horizontally.



    How can I fix it (make sure that each component that I add is displayed on a separate line)?










    share|improve this question



























      2












      2








      2








      I have a view in Vaadin 11, which is displayed at URL like products/X where X is a product identifier.



      @Route(value = "products")
      public class ProductView extends VerticalLayout implements HasUrlParameter<String> {

      public ProductView() {

      }

      [...]
      }


      I cannot display any information on this page without having a product, therefore I add all components in the method setParameter:



      @Override
      public void setParameter(final BeforeEvent beforeEvent,
      final String param) {
      final Product product = findProduct(param);

      if (product == null) {
      return;
      }
      final Text name = new Text(product.getName());
      final Text interestRate = new Text(String.format("Ставка: %.2f",
      product.getInterestRatePercentPerAnnum()));
      final Text duration = new Text(String.format("Срок: %d - %d месяцев",
      product.getDurationMonths().getStart(),
      product.getDurationMonths().getEndInclusive()));
      final Text provider = new Text(String.format("Организация: %s",
      product.getProvider().getName()));
      final Text description = new Text("<html>Hi there! <b>Bold</b> text</html>");


      add(name);
      add(interestRate);
      add(duration);
      add(description);
      add(provider);
      }


      But the various data items are displayd in one line:



      Screenshot



      This means that for some reason VerticalLayout layous out the components horizontally.



      How can I fix it (make sure that each component that I add is displayed on a separate line)?










      share|improve this question
















      I have a view in Vaadin 11, which is displayed at URL like products/X where X is a product identifier.



      @Route(value = "products")
      public class ProductView extends VerticalLayout implements HasUrlParameter<String> {

      public ProductView() {

      }

      [...]
      }


      I cannot display any information on this page without having a product, therefore I add all components in the method setParameter:



      @Override
      public void setParameter(final BeforeEvent beforeEvent,
      final String param) {
      final Product product = findProduct(param);

      if (product == null) {
      return;
      }
      final Text name = new Text(product.getName());
      final Text interestRate = new Text(String.format("Ставка: %.2f",
      product.getInterestRatePercentPerAnnum()));
      final Text duration = new Text(String.format("Срок: %d - %d месяцев",
      product.getDurationMonths().getStart(),
      product.getDurationMonths().getEndInclusive()));
      final Text provider = new Text(String.format("Организация: %s",
      product.getProvider().getName()));
      final Text description = new Text("<html>Hi there! <b>Bold</b> text</html>");


      add(name);
      add(interestRate);
      add(duration);
      add(description);
      add(provider);
      }


      But the various data items are displayd in one line:



      Screenshot



      This means that for some reason VerticalLayout layous out the components horizontally.



      How can I fix it (make sure that each component that I add is displayed on a separate line)?







      java layout vaadin






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 15 '18 at 12:04







      DP_

















      asked Nov 15 '18 at 11:49









      DP_DP_

      2,97732117230




      2,97732117230
























          1 Answer
          1






          active

          oldest

          votes


















          5














          Text is a specific component, since it corresponds to text nodes in DOM (in the browser). Therefore, there are no HTML elements and the content added to the VerticalLayout will flow from left to right. That's how it looks in the browser tree:
          enter image description here



          Use Div instead:



          final Div name = new Div(new Text("Product"));
          final Div interestRate = new Div(new Text(String.format("Ставка: %.2f",
          0.05d)));
          final Div duration = new Div(new Text(String.format("Срок: %d - %d "
          + "месяцев", 10, 11)));
          final Div provider = new Div(new Text(String.format("Организация: %s"
          , 10)));
          final Div description = new Div(new Text("<html>Hi there! <b>Bold</b>"
          + " text</html>"));


          By using Div, you're inserting div elements into the VerticalLayout so it can do it's work.






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53318838%2fwhy-arent-components-inside-verticallayout-aligned-vertically-in-vaadin-11%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            5














            Text is a specific component, since it corresponds to text nodes in DOM (in the browser). Therefore, there are no HTML elements and the content added to the VerticalLayout will flow from left to right. That's how it looks in the browser tree:
            enter image description here



            Use Div instead:



            final Div name = new Div(new Text("Product"));
            final Div interestRate = new Div(new Text(String.format("Ставка: %.2f",
            0.05d)));
            final Div duration = new Div(new Text(String.format("Срок: %d - %d "
            + "месяцев", 10, 11)));
            final Div provider = new Div(new Text(String.format("Организация: %s"
            , 10)));
            final Div description = new Div(new Text("<html>Hi there! <b>Bold</b>"
            + " text</html>"));


            By using Div, you're inserting div elements into the VerticalLayout so it can do it's work.






            share|improve this answer




























              5














              Text is a specific component, since it corresponds to text nodes in DOM (in the browser). Therefore, there are no HTML elements and the content added to the VerticalLayout will flow from left to right. That's how it looks in the browser tree:
              enter image description here



              Use Div instead:



              final Div name = new Div(new Text("Product"));
              final Div interestRate = new Div(new Text(String.format("Ставка: %.2f",
              0.05d)));
              final Div duration = new Div(new Text(String.format("Срок: %d - %d "
              + "месяцев", 10, 11)));
              final Div provider = new Div(new Text(String.format("Организация: %s"
              , 10)));
              final Div description = new Div(new Text("<html>Hi there! <b>Bold</b>"
              + " text</html>"));


              By using Div, you're inserting div elements into the VerticalLayout so it can do it's work.






              share|improve this answer


























                5












                5








                5







                Text is a specific component, since it corresponds to text nodes in DOM (in the browser). Therefore, there are no HTML elements and the content added to the VerticalLayout will flow from left to right. That's how it looks in the browser tree:
                enter image description here



                Use Div instead:



                final Div name = new Div(new Text("Product"));
                final Div interestRate = new Div(new Text(String.format("Ставка: %.2f",
                0.05d)));
                final Div duration = new Div(new Text(String.format("Срок: %d - %d "
                + "месяцев", 10, 11)));
                final Div provider = new Div(new Text(String.format("Организация: %s"
                , 10)));
                final Div description = new Div(new Text("<html>Hi there! <b>Bold</b>"
                + " text</html>"));


                By using Div, you're inserting div elements into the VerticalLayout so it can do it's work.






                share|improve this answer













                Text is a specific component, since it corresponds to text nodes in DOM (in the browser). Therefore, there are no HTML elements and the content added to the VerticalLayout will flow from left to right. That's how it looks in the browser tree:
                enter image description here



                Use Div instead:



                final Div name = new Div(new Text("Product"));
                final Div interestRate = new Div(new Text(String.format("Ставка: %.2f",
                0.05d)));
                final Div duration = new Div(new Text(String.format("Срок: %d - %d "
                + "месяцев", 10, 11)));
                final Div provider = new Div(new Text(String.format("Организация: %s"
                , 10)));
                final Div description = new Div(new Text("<html>Hi there! <b>Bold</b>"
                + " text</html>"));


                By using Div, you're inserting div elements into the VerticalLayout so it can do it's work.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 15 '18 at 12:42









                Maciej Piotr PrzepióraMaciej Piotr Przepióra

                35429




                35429
































                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53318838%2fwhy-arent-components-inside-verticallayout-aligned-vertically-in-vaadin-11%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Xamarin.iOS Cant Deploy on Iphone

                    Glorious Revolution

                    Dulmage-Mendelsohn matrix decomposition in Python