Checking TextField input constraints
(A bit long-winded, but a simple question...)
I've created TextField using:
tf2 = new TextField("Enter whatever:", null, 15, TextField.PASSWORD | TextField.NON_PREDICTIVE);
Later on in my code, I want to check whether tf2 still has the PASSWORD contraint.
Because I also included the NON_PREDICTIVE constraint, the following detection code doesn't work:
if (tf2.getConstraints() == TextField.PASSWORD) {
//code a
}
else {
//code b
}
So what's the correct way to detect?
Thanks,
James

