There is a JTable table. As I understand it, the scrollpane in which it lies creates a scroll slider. How to move it programmatically? I tried

JScrollBar scroll = tableScrollPane.getVerticalScrollBar(); scroll.setValue(100); 

but not working

    1 answer 1

    Found

     scroll.getViewport().setViewPosition(new Point(0,1000));