Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4527906

JList: Page-up/Page-down scrolling of JFileChooser: not even close...

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 6
    • 1.4.0
    • client-libs
    • None
    • beta
    • generic
    • generic

        To reproduce, bring up the JFileChooser in SwingSet2, and change to a directory with enough items to warrant scrollbars. Behavior observed:

        Page-up: works once, and then ceases to work, as if at the top of the listing
        Page-down: bounces the selection back and forth on a single screen, but never actually scrolling to additional items.

        I can reproduce this with Merlin (b86) on Solaris and Win2K.

        This problem was mentioned in bug 4408515, but didn't make it into the fix.

        Page-up/page-down scrolling works with 1.3.1, although 1.3.1 uses a vertical listing rather than a horizontal one.

        -------------------------------------------------------

        Test case for JList:

        import javax.swing.*;

        public class Bug4527906 {
            public static void main(String[] args) {
        JFrame f = new JFrame();
        String[] values = new String[500];
        for (int i=0; i < values.length; i++) {
        values[i] = i + "";
        }
        JList list = new JList(values);
        list.setLayoutOrientation(JList.VERTICAL_WRAP);
        list.setVisibleRowCount(-1);
        f.getContentPane().add(new JScrollPane(list));
        f.setSize(300, 200);
        f.setVisible(true);
            }
        }

        ###@###.### 2001-11-19

              apikalev Andrey Pikalev
              bchristi Brent Christian
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: