-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.1.7
-
x86, sparc
-
solaris_2.6, windows_nt
Name: dbT83986 Date: 04/09/99
When the applet is initially painted, the menu correctly aligns
itself with the JComboBox. However, if you move the browser
(scroll, move the window, etc), the menu stays in its original
location, while the rest of the applet relocates itself.
This occurs using Netscape 4.05, Java Plugin 1.1.2. To reproduce,
use the following java source & web page. The web page was
converted with the downloadable HTML converter.
---------------Java Source-------------------
import javax.swing.*;
import javax.swing.event.*;
public class test extends JApplet {
String[] strings1 = { "one", "two", "three", "four" };
String[] strings2 = { "1", "2", "3", "4" };
public void init() {
JComboBox combo1 = new JComboBox(strings1);
JComboBox combo2 = new JComboBox(strings2);
JPanel panel = new JPanel();
panel.add(combo1);
panel.add(combo2);
getContentPane().add(panel);
}
}
-----------------End Java Source----------------------
-------------------Web Page---------------------------
<html>
<head><title>Bug Test</title></head>
<body>
<P>
Trying to reproduce a Java JComboBox bug:
<p>
<p>
 
<p>
 
<p>
 
<p>
 
<p>
 
<p>
 
<p>
 
<p>
 
<p>
 
<p>
<!--"CONVERTED_APPLET"-->
<!-- CONVERTER VERSION 1.0 -->
<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
WIDTH = 200 HEIGHT = 40 codebase="http://java.sun.com/products/plugin/1.1.1/jinstall-
111-win32.cab#Version=1,1,1,0">
<PARAM NAME = CODE VALUE = test.java >
<PARAM NAME="type" VALUE="application/x-java-applet;version=1.1">
<COMMENT>
<EMBED type="application/x-java-applet;version=1.1" java_CODE = test.java WIDTH = 100
HEIGHT = 100 pluginspage="http://java.sun.com/products/plugin/1.1.1/plugin-install.h
tml"><NOEMBED></COMMENT>
null
</NOEMBED></EMBED>
</OBJECT>
<!--
<APPLET CODE = test.java WIDTH = 200 HEIGHT = 40 >
null
</APPLET>
-->
<!--"END_CONVERTED_APPLET"-->
<p>
 
<p>
 
<p>
 
<p>
 
<p>
 
<p>
 
<p>
 
<p>
 
<p>
 
This is just wasted space....
<p>
 
<p>
 
<p>
 
<p>
 
<p>
 
<p>
 
(Review ID: 56435)
======================================================================
Name: skT88420 Date: 06/22/99
Simply place a JComboBox on JPanel within a JApplet.
Now click the combobox to show the list...
Under normal circumstances, a mouse PRESS will have no effect
on a list item and the mouse RELEASE will cause it to become
the selected item.
However, if any portion of the drop-down list falls outside of
the browser window, a mouse PRESS on any list item will cause
the drop-down list to disappear.
java version "1.1.7A"
java full version "JDK1.1.7S"
Browser - Internet Explorer 4.0 SP2
Look and Feel - Windows
(Review ID: 84657)
======================================================================
- duplicates
-
JDK-4247469 Odd behavior with JComboBox Popup Menu
-
- Closed
-