I have top bar, list and bottom bar.
this.setLayout(new BorderLayout());
this.addComponent(BorderLayout.NORTH, bottomBar);
this.addComponent(BorderLayout.CENTER, list);
this.addComponent(BorderLayout.SOUTH, bottomBar);
List
is very long. bottomBar and bottomBar is hide. Scrolling is on the full screen.
How to make that scrolling was only for BorderLayout.CENTER
. bottomBar and bottomBar will be visible.
Disable the scrollable in the
Form
. For example do like this,