I could not select the typed text in extjs text field on firefox. i can select the typed text in IE and chrome.
The problem occurs only in FF.
Any ideas or solution for this?
The problem lies in my css which allows user not able to select the text
.unselectable {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
But i need to allow user to select the text without modifying the above css. any ideas?
use
selectTextmethod to select text