Page 1 of 1

Horizontal Scroll Bar

PostPosted: Tue Sep 13, 2011 3:48 pm
by Garantisoft
Code: Select all
      
...
UIGroupPanel group = new UIGroupPanel();
group.setText("ARaporu");

UITable table = new UITable();
table.setDataBook(rdbContacts);
      
group.setLayout(new UIBorderLayout());
group.add(table);
      
setLayout(new UIBorderLayout());
add(group, UIBorderLayout.CENTER);
         
setTitle("ARaporu");
setState(UIInternalFrame.MAXIMIZED_BOTH);
...


How can I set view Horizontal Scroll Bar?

Re: Horizontal Scroll Bar

PostPosted: Tue Sep 13, 2011 4:07 pm
by Support@SIB
If you add a table to the group, and everything is managed from layout managers, the h-scrollbar should be visible when needed! The table has its own scrollbars.

An example is the Contacts screen in our Showcase application.