Tuesday 12 February 2013

jQuery UI Dailog, IE and DropDownList

There is a problem to select from a dropdownlist in a jQuery Dialog plug-in.  It happens only in IE (8 and 9, at least).  It works in FireFox.

  • The very first time (after opening the dialog) will work but it won't when I try to select another value
  • I can select the value using the keyboard
  • Tab to the dropdownlist and select with the mouse
  • I tired to add the z-index to the dropdownlist but it doesn't help
Solution:
  • The current solution is adding a mouseover event to set the focus to the dropdownlist.
onmouseover = "this.focus();return true;"


No comments:

Post a Comment