-
Bug
-
Resolution: Unresolved
-
P4
-
None
-
1.1.3, 1.3.0
-
Fix Understood
-
sparc
-
solaris_2.5.1, solaris_7
orig synopsis:
"Error handling mouse highlighting in TextField after setEchoChar() called."
Name: diC59631 Date: 09/12/97
In a TextField which is displaying the text
entered, the user can highlight text with the
mouse or cursors and then either press delete to
erase the text or just type, which will overwrite
the selected text.
If setEchoChar has been called on the TextField,
although highlight-delete still works, highlight-
overtype does not.
Example source:
------ begin EchoCharBug.java ------
import java.awt.*;
public class EchoCharBug extends Frame
{
private TextField tf;
public EchoCharBug ()
{
tf = new TextField (30);
tf.setEchoChar ('*');
add (tf);
pack ();
}
public static void main (String args[])
{
EchoCharBug app = new EchoCharBug ();
app.show ();
}
}
------- end EchoCharBug.java -------
Running under SOlaris 2.5.1 / OpenWindows 3.5.1
Dave Richerby.
company - Micromuse , email - ###@###.###
======================================================================
"Error handling mouse highlighting in TextField after setEchoChar() called."
Name: diC59631 Date: 09/12/97
In a TextField which is displaying the text
entered, the user can highlight text with the
mouse or cursors and then either press delete to
erase the text or just type, which will overwrite
the selected text.
If setEchoChar has been called on the TextField,
although highlight-delete still works, highlight-
overtype does not.
Example source:
------ begin EchoCharBug.java ------
import java.awt.*;
public class EchoCharBug extends Frame
{
private TextField tf;
public EchoCharBug ()
{
tf = new TextField (30);
tf.setEchoChar ('*');
add (tf);
pack ();
}
public static void main (String args[])
{
EchoCharBug app = new EchoCharBug ();
app.show ();
}
}
------- end EchoCharBug.java -------
Running under SOlaris 2.5.1 / OpenWindows 3.5.1
Dave Richerby.
company - Micromuse , email - ###@###.###
======================================================================
- duplicates
-
JDK-4068237 If the echoCharIsSet is true, the insert char does not work.
-
- Closed
-
- relates to
-
JDK-4307281 setEchoChar causes incorrect actions. (Solaris ONLY)
-
- Resolved
-