How to make Canvas on a JSCrollPane Vertical/Horizontal splittable
I have a JScrollPane on which i placed a JTree(Vertical/Horizontal Scrollable)
I have a ScrollPane on which i placed a Canvas(Vertical/Horizontal Scrollable)
I was able to do it but, its splitting towards the JScrollPane area only.
So i tried to make a JScrollPane and tried to add a Canvas to it setting the options as JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS.
But the problem is its showing the Scrollable bars but not able to Scroll when more images are there on the Canvas.
My problem will be solved if i was able to add a Canvas to the JScrollPane with Vertical/Horizontal Scrollable.

