Reputation: 3628
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?
Upvotes: 1
Views: 1619
Reputation: 11104
use selectText
method to select text
selectText( [Number start], [Number end] );
Upvotes: 1