Community
Participate
Working Groups
// to be sure we get the element selected
this._inputElement.select();
this._inputElement.focus();
// [if] focus() leads to error in IE if the _inputElement is disabled.
if( this.isEnabled() ) {
}
},