java - jtabbedpane should not move on scrolling the panel down -
i have long list of data presented in on jtabbedpanel, on scrolling down data tabbed panel name @ top not visible .how can make tabbed panel tabs visible @ top on scrolling down?
can on how can fix , or mention posts regarding same ?
thanks in advance .
from sounds of it, adding jtabbedpane
jscrollpane
.
instead, add each tab's component jscrollpane
, add (the scroll pane) tab...
ie...
jscrollpane scrollpane = new jscrollpane(reallylargepane); tabbedpane.addtab("another tab", scrollpane);
Comments
Post a Comment