Reputation: 33
I would like to move the Horizontal scroll bar to the top of my JScrollPane. Does anyone knows how to do this ? I am on Java swing.
Upvotes: 3
Views: 349
Reputation: 33
This worked for me.
jScrollPane.setColumnHeaderView(jScrollPane.getHorizontalScrollBar());
Upvotes: 0
Reputation: 324197
Start by reading the JScrollPane
API.
At the right of the first page you will see a simple diagram showing the layout of the scroll pane. You will see:
So what you need to do is move the horizontal scrollbar to the column header. To this you need to:
Upvotes: 3