-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.2.2
-
x86
-
linux
Name: kaC94536 Date: 01/11/2000
The following code shows JComboBox with five items where the second and
fourth items are equal. In this case there is no possibility to select
the last two items using up/down-arrow keys.
The same behavior is observed on Solaris.
-------------------------- test.java --------------------------------
import java.awt.*;
import javax.swing.*;
class test {
public static void main(String args[]) {
JFrame jf = new JFrame();
jf.getContentPane().setLayout(new FlowLayout());
JComboBox jcb = new JComboBox();
jcb.addItem("one");
jcb.addItem("two");
jcb.addItem("three");
jcb.addItem("two");
jcb.addItem("five");
jf.getContentPane().add(jcb);
jf.setSize(300, 300);
jf.show();
}
}
======================================================================
======================================================================
- duplicates
-
JDK-4165344 JComboBox: API needs to document the fact that equivalent items cause problems
-
- Closed
-