-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
1.2.0
-
generic
-
generic
In the code sample below, the text is always right-justified, in spite of the
calls to JTextField.setScrollOffset(0) and JTextField.setHorizontalAlignment(JTextField.LEFT). This is true for all Swing
versions.
--------------------------------------------------------------------------------
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class TestSetScrollOffset extends JFrame {
JFrame frame;
JTextField tf = new JTextField(10);
public TestSetScrollOffset() {
frame = this;
Container c = getContentPane();
c.setLayout(new FlowLayout());
c.add(tf);
JButton button = new JButton("Add Text");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
tf.setText("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
tf.setScrollOffset(0);
tf.setHorizontalAlignment(JTextField.LEFT);
tf.invalidate();
frame.validate();
}});
c.add(button);
pack();
setVisible(true);
}
public final static void main(String[] args) {
new TestSetScrollOffset();
}
}
************************************************************************
nick.rodin@eng 03-04-1999
Calling the JTextComponent method setCaretPosition(0) is an effective workaround.
calls to JTextField.setScrollOffset(0) and JTextField.setHorizontalAlignment(JTextField.LEFT). This is true for all Swing
versions.
--------------------------------------------------------------------------------
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class TestSetScrollOffset extends JFrame {
JFrame frame;
JTextField tf = new JTextField(10);
public TestSetScrollOffset() {
frame = this;
Container c = getContentPane();
c.setLayout(new FlowLayout());
c.add(tf);
JButton button = new JButton("Add Text");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
tf.setText("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
tf.setScrollOffset(0);
tf.setHorizontalAlignment(JTextField.LEFT);
tf.invalidate();
frame.validate();
}});
c.add(button);
pack();
setVisible(true);
}
public final static void main(String[] args) {
new TestSetScrollOffset();
}
}
************************************************************************
nick.rodin@eng 03-04-1999
Calling the JTextComponent method setCaretPosition(0) is an effective workaround.