vote up 0 vote down star

Hi,

I have a jlist with a lot of items in it, of which one is selected. I would like to scroll to the selected item in this jlist, so the user can quickly see which item is selected.

How can I do this?

thanks!

String[] data = {"one", "two", "three", "four", /* AND A LOT MORE */};
JList dataList = new JList(data);
JScrollPane scrollPane = new JScrollPane(dataList);
flag

71% accept rate

3 Answers

vote up 5 vote down check

This should do it:

dataList.ensureIndexIsVisible(dataList.getSelectedIndex());
link|flag
vote up 2 vote down

Or, if multi-selection is enabled :

dataList.scrollRectToVisible(
        dataList.getCellBounds(
            dataList.getMinSelectionIndex(), 
            dataList.getMaxSelectionIndex()
        )
);
link|flag
its dataList.getMinSelectionIndex() however, the answer is still useful for me :) – Fortega Oct 9 at 15:06
Thanks - edited code from Selelected to Selection – Nate Oct 9 at 17:00
vote up 4 vote down

You can use the ensureIndexIsVisible method

http://java.sun.com/javase/6/docs/api/javax/swing/JList.html#ensureIndexIsVisible(int)

Scrolls the list within an enclosing viewport to make the specified cell completely visible. This calls scrollRectToVisible with the bounds of the specified cell. For this method to work, the JList must be within a JViewport.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.