-
Bug
-
Resolution: Duplicate
-
P2
-
None
-
1.2.0
-
generic, x86, sparc
-
generic, solaris_2.5, solaris_2.5.1, solaris_2.6, windows_95
When modifying the JTextField content, the I-bean caret is located at wrong position. Therefore it screws up the JTextField content.
This bug ONLY exists in Solaris. It is all right in NT.
To reproduce the bug, use the following code :
import java.awt.*;
import java.io.*;
import java.util.*;
import java.awt.event.*;
import java.awt.swing.*;
public class TestField extends JFrame implements ActionListener
{
JTextField textField;
public TestField() {
super("Test JTextField");
textField = new JTextField("Hello");
textField.addActionListener(this);
JPanel onePanel = new JPanel();
onePanel.setLayout(new BorderLayout());
onePanel.add(textField);
this.getContentPane().add("Center",onePanel);
WindowListener wl = new WindowAdapter(){
public void windowClosing(WindowEvent event){
System.exit(0);
}
};
addWindowListener(wl);
setSize(500,100);
setLocation(300, 300);
show();
}
public void actionPerformed(ActionEvent e){
System.out.println( textField.getText());
}
public static void main(String args[]){
TestField frame = new TestField();
}
}
// The end.
patience.chu@Eng 1998-02-11 - Upgrate the test to the latest Jdk1.2
This bug ONLY exists in Solaris. It is all right in NT.
To reproduce the bug, use the following code :
import java.awt.*;
import java.io.*;
import java.util.*;
import java.awt.event.*;
import java.awt.swing.*;
public class TestField extends JFrame implements ActionListener
{
JTextField textField;
public TestField() {
super("Test JTextField");
textField = new JTextField("Hello");
textField.addActionListener(this);
JPanel onePanel = new JPanel();
onePanel.setLayout(new BorderLayout());
onePanel.add(textField);
this.getContentPane().add("Center",onePanel);
WindowListener wl = new WindowAdapter(){
public void windowClosing(WindowEvent event){
System.exit(0);
}
};
addWindowListener(wl);
setSize(500,100);
setLocation(300, 300);
show();
}
public void actionPerformed(ActionEvent e){
System.out.println( textField.getText());
}
public static void main(String args[]){
TestField frame = new TestField();
}
}
// The end.
patience.chu@Eng 1998-02-11 - Upgrate the test to the latest Jdk1.2
- duplicates
-
JDK-4089776 The cursor is not shown at right position on component JTextArea
-
- Closed
-
-
JDK-4114388 Cursor winds up in wrong location after typing in Swing text components
-
- Closed
-
-
JDK-4099846 scrolling problem in JTextField
-
- Closed
-
-
JDK-4091627 Scaling outside of width causes PRException
-
- Closed
-
-
JDK-4104226 Position of textcursor in JPassword field is wrong
-
- Closed
-
-
JDK-4130434 The Measurement of Text
-
- Closed
-
(1 duplicates)