Creating

Top  Previous  Next

 

You can create and use an AdvancedJScrollPane as you would normally do with a JScrollPane:

 

AdvancedJScrollPane scroller = new AdvancedJScrollPane();

JTable table = new JTable(); //or AdvancedJTable();

scroller.setViewPortView(table);

JPanel p = new JPanel();

p.setLayout(new BorderLayout());

p.add(scroller);