-
Enhancement
-
Resolution: Unresolved
-
P3
-
None
-
5.0, 6, 6u2
-
x86
-
linux, windows_xp
A DESCRIPTION OF THE REQUEST :
When the number if items in the Menu/JMenu increases, it is very difficult to view all the menu items available in that menu.
JUSTIFICATION :
There is a very fair chance that there may be many items added to the Menu or JMenu. So some kind of scrolling mechanism must be available to see all the items in the Menu/JMenu.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
1:
User should be able to specify the total number of elements (MenuItem) to be visible in a given Menu/JMenu when shown. If the number of MenuItem exceed this number, then a scrolling mechanism should be automatically added.
2:
The scroll UI can be placed on top and bottom of the Menu/JMenu at all time. It can be enabled on specific condition like when the number of elements (MenuItem) exceed the total number of items to be shown at a time.
This functionality is something similar to the enabling the scrolling feature in the Start-> Programs Menu in the Windows environment.
ACTUAL -
For example, if my application has a menu that contains more than 25-30 MenuItems then there is no option of scrolling available.
---------- BEGIN SOURCE ----------
import javax.swing.*;
public class ActionTest extends JFrame
{
JMenuBar jmenubar = new JMenuBar();
JMenu fileMenu = new JMenu("File");
public ActionTest()
{
super("ActionTest");
for(int i=1;i<=50; i++)
{
fileMenu.add(new JMenuItem("Menu Item " + i));
}
jmenubar.add(fileMenu);
this.setJMenuBar(jmenubar);
setSize(200, 200);
}
public static void main(String[] args)
{
ActionTest at = new ActionTest();
at.show();
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Still working on it...
When the number if items in the Menu/JMenu increases, it is very difficult to view all the menu items available in that menu.
JUSTIFICATION :
There is a very fair chance that there may be many items added to the Menu or JMenu. So some kind of scrolling mechanism must be available to see all the items in the Menu/JMenu.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
1:
User should be able to specify the total number of elements (MenuItem) to be visible in a given Menu/JMenu when shown. If the number of MenuItem exceed this number, then a scrolling mechanism should be automatically added.
2:
The scroll UI can be placed on top and bottom of the Menu/JMenu at all time. It can be enabled on specific condition like when the number of elements (MenuItem) exceed the total number of items to be shown at a time.
This functionality is something similar to the enabling the scrolling feature in the Start-> Programs Menu in the Windows environment.
ACTUAL -
For example, if my application has a menu that contains more than 25-30 MenuItems then there is no option of scrolling available.
---------- BEGIN SOURCE ----------
import javax.swing.*;
public class ActionTest extends JFrame
{
JMenuBar jmenubar = new JMenuBar();
JMenu fileMenu = new JMenu("File");
public ActionTest()
{
super("ActionTest");
for(int i=1;i<=50; i++)
{
fileMenu.add(new JMenuItem("Menu Item " + i));
}
jmenubar.add(fileMenu);
this.setJMenuBar(jmenubar);
setSize(200, 200);
}
public static void main(String[] args)
{
ActionTest at = new ActionTest();
at.show();
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Still working on it...
- duplicates
-
JDK-6579964 SysTray:MenuItems in the PopupMenu are not geting displayed
-
- Closed
-
- relates to
-
JDK-4246124 Popup menus with large number of components should split
-
- Open
-