This website uses cookies for visitor traffic analysis. By using the website, you agree with storing the cookies on your computer.More information

Horizontal Scroll Bar

General questions regarding the development with JVx.

Horizontal Scroll Bar

Postby Garantisoft » Tue Sep 13, 2011 3:48 pm

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?
Garantisoft
 
Posts: 16
Joined: Wed Aug 17, 2011 3:26 pm

Re: Horizontal Scroll Bar

Postby Support@SIB » Tue Sep 13, 2011 4:07 pm

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.
User avatar
Support@SIB
 
Posts: 353
Joined: Mon Sep 28, 2009 1:56 pm


Return to Development