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

SDK1.2.x: JScrollPane/JViewPort doesn't provide scrollbars when needed

XMLWordPrintable

    • x86
    • windows_95, windows_nt



      Name: diC59631 Date: 12/05/97


      import java.awt.*;
      import com.sun.java.swing.*;
      public class Test {
          public static void main(String args[]) {
      Frame f = new Frame();
      JTextArea editor = new JTextArea("Test JTestArea -- scrollbars, page up/down");
      JScrollPane scroller = new JScrollPane();
      JViewport port = scroller.getViewport();
      port.add(editor);
      f.add(scroller);
      f.setSize(300, 200);
      f.show();
          }
      }

      1. The above program comes up with a horizonal scroolbar.
      2. Make the window wider, the scroll bar disappears. Fine.
      3. Enter a line longer than the screen width, no scrollbar comes up.
      4. Enter more lines to full the screen vertically, no scrollbar appears.
      5. Resize the window in any way, proper scroolbar(s) will appear.

      Scrollbars shouldn't wait for resizing to show up.
      This is a problem with Swing 0.6.1. But NOT a problem with Swing 0.5.1.
      (Review ID: 21361)
      ======================================================================

            svioletsunw Scott Violet (Inactive)
            dindrigo Daniel Indrigo (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: