11-15-2012 10:05 AM
Hi All,
I have a problem with PasswordEditField on the device and simulator BB9900 OS7 (on the other devises works correctly 9800,9300,9700).
The problem is that after the introduction of 6 characters, the label is replaced by an asterisk.
e.g
PasswordEditField pin = new PasswordEditField("Pin: ", null, 6, EditField.FILTER_NUMERIC|FIELD_VCENTER){
protected void paint(Graphics g) {
g.setColor(Color.WHITE);
super.paint(g);
}
};
But if I change maxNumChars to 7 or other digit the issue not reproduced, I also noticed if change the number of characters in label to 6 or 4 ("Pin: " to " Pin: ")the issue not reproduced.
entered 5 characters:

entered 6 characters:

I appreciate any ideas. Is it known issue? Did anybody faced it?
Or did anybody met discussion of this issue?
11-15-2012 10:10 AM