02-28-2013 11:34 AM
Hello.
How can I disable text selection in a EditField?
I don't want to let the user to copy the content of the text field.
Thanks in advance!
Solved! Go to Solution.
02-28-2013 12:29 PM
I found that the method select() from the class Field must be overridden.
public void select(boolean enable) {
super.select(false);
}