AJJ
AJJ

Reputation: 3628

ExtJs 3.4 - Not able to select text in text field in FireFox

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

Answers (1)

Anant Dabhi
Anant Dabhi

Reputation: 11104

use selectText method to select text

selectText( [Number start], [Number end] );

Upvotes: 1

Related Questions