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

JOptionPane buttons don't shown when many lines in JOptionPane

XMLWordPrintable

    • x86
    • linux, windows_xp

      A DESCRIPTION OF THE REQUEST :
      When JOptionPane contains a text consists of many lines the OK/NO buttons don't shown since they are out of the screen border in the botom of the JOptionPane.

      JUSTIFICATION :
      Need to enhance JOptionPane usebility


      ---------- BEGIN SOURCE ----------
      import javax.swing.*;
      public class rfe2
      {
      String separator = System.getProperty("line.separator");
      public rfe2()
      {
      String text = "";
      for(int i=0; i<100; i++)
      text = text + "This is a normal message" + separator;

      JOptionPane.showMessageDialog(null, text, "Test", JOptionPane.ERROR_MESSAGE);
      }

      public static void main(String args[]){new rfe2();}
      }
      ---------- END SOURCE ----------

      CUSTOMER SUBMITTED WORKAROUND :
      1) JOptionPane should get the size of the screen and when it has a bigger border it should layout the text in a scrollpane with scrollbars.
      2) or you can build your own JOptionPane using Dialog.

            Unassigned Unassigned
            igor Igor Nekrestyanov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Imported:
              Indexed: