-
Bug
-
Resolution: Fixed
-
Normal
-
8.0.2
-
None
-
Security Level: Jimmy
-
None
-
None
using chosenbox.focus() does not focus the chosenbox text field. (java or javascript)
Possibly due to the chosenbox widget root being a <i> element instead, and not allowed in widget.focus()
focus: function (timeout) { var n = this.jq[0]; if (!n || !n.focus) return false; if (!jq.nodeName(n, 'button', 'input', 'textarea', 'a', 'select', 'iframe')) return false; if (timeout >= 0) setTimeout(function() {_focus(n);}, timeout); else _focus(n); return true; }