
I am unable to scroll to the last item in the above scrollbar . Please help….Thanks in Advance
The code:
JList myAvailableList = new JList();
myAvailableList.setName("AvailableList");
myAvailableList.addListSelectionListener(this);
JScrollPane myAvailableScroll = new JScrollPane(myAvailableList);
myAvailableScroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
myAvailableScroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
myAvailableScroll.setPreferredSize(new Dimension(LIST_PREF_WIDTH, LIST_PREF_HEIGHT));
As the scrollbar shows you did scroll to the last item, however the lower area of the list is hidden by a different Component, either make the list component shorter or the area containing it larger.