Everything work fine when I used vaadin 6.7.3. Once upgraded to 6.8.14 the vertical scrollbar disappear. How can this that please help !
How I can fix that, please help !
A bit more details would help, for example the following. In which component/layout is this scrollbar? Do you have your own theme and could that interfere somehow?
I fixed that using a Panel component, Thanks
Panel p = new Panel();
mainLayout = new MainLayout(this);
p.setContent(mainLayout);
p.setSizeFull();
setContent(p);