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
Source: https://ru.stackoverflow.com/questions/840639/
All Articles