-
Enhancement
-
Resolution: Unresolved
-
P4
-
None
-
6
-
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.
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.