-
Bug
-
Resolution: Cannot Reproduce
-
P3
-
None
-
1.2.2
-
x86
-
windows_nt
Name: boT120536 Date: 02/26/2001
Classic VM (build JDK-1.2.2-001, native threads, symcjit)
-Running Windows NT 4.0 Korean (this bug does not show up in Japanese NT).
-Running an applet in the applet viewer *or* the Java plug-in in a browser.
-Initially, text fields permit entry in either Korean or Roman letters using the
Input Method. In Korean NT, the Input Method is specified by a small floating
window that, in the left half of the window, indicates the current input mode
with either a korean character or the letter "A". The user may toggle between
the modes by clicking on the letter. I do not know of any way from the keyboard
to switch input modes between English and Korean (e.g., shift-alt does not work
to change the mode in Korean NT).
-After a dialog box is shown, however, the Input Method becomes stuck in either
Korean or Roman letters. Clicking on the floating window causes the letter to
change while the mouse button is held down, but it changes back as soon as the
mouse is released. If other programs are brought up, the Input Method window
does allow switching between Korean and English for those programs, but as soon
as the applet is brought back up, the Input Method returns to being stuck.
To reproduce:
-------------
- Run the attached applet,
- at first you can type either Korean or English letters in the text field,
switching using the Input Method window.
- push the button in the applet, which brings up the dialog box
- close the dialog box
- the Input Method is now stuck, and cannot be changed between English and
Korean.
/**
* This applet shows a bug when run under Korean NT. Before pushing the
* button, the Entry Method allows either Roman Letters or Korean. After
* the button is pushed as the dialog is shown, the EntryMethod becomes
* stuck and does not allow switching the Entry Method
*/
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class TestContainer extends JApplet
{
public void init()
{
Box panel = new Box(BoxLayout.Y_AXIS);
JButton theButton = new JButton("Push here");
JTextField theField = new JTextField("Text field");
theButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e)
{
JOptionPane.showInputDialog("Go ahead, type anything: ");
}});
panel.add(theButton);
panel.add(theField);
setContentPane(panel);
}
}
HTML used to start applet:
<HTML>
<EMBED ID="UIC" WIDTH="800" HEIGHT="600"
CODE="TestContainer.class">
</EMBED>
</HTML>
(Review ID: 117596)
======================================================================