ado2000
(Giovanni Adobati)
April 16, 2020, 8:57am
1
Hi, nice component,
How is it possible to block 100% height of the content area ?
What i need is to avoid content scroll.
i’m using code like this
.add(new LeftNavigationItem(cs.getI18n("contacts"), VaadinIcon.USER.create(), ViewContact.class))
Thanks
Have you tried setting the height of ViewContact.class
to 100%
?
ado2000
(Giovanni Adobati)
April 16, 2020, 9:10am
3
Hi, thanks for the reply,
yes, i already tried width setSizeFull(), so strange.
ado2000
(Giovanni Adobati)
April 16, 2020, 9:16am
4
The layout is generated by this code:
final LeftLayouts.LeftHybrid appLayout = AppLayoutBuilder.get(LeftLayouts.LeftHybrid.class)
.withTitle("test")
.withAppBar(appBar)
.withIconComponent(logo)
.withAppMenu(loadMenuLayout()).build();
Regards
Alex571
(Alex Sükein)
September 11, 2020, 11:31am
5
I had the same problem I called the setSizeFull()
method but nothing happened. I used LeftLeftHybridResponsive
layout and when I changed it to LeftHybrid
it worked.