jQueryUI 1.11 multiple modal dialogs not working -
there seem issue last version of jqueryui (1.11) when comes using several modal dialogs.
what trying achieve following: have 2 modal dialogs, first 1 contains button should open second dialog:
html
<div id="test1"> test 1 <button id="open_test2">open test 2</button> </div> <div id="test2"> test 2 </div>
js
$(function() { $('#test1').dialog({ autoopen: true, modal: true }); $('#test2').dialog({ autoopen: false, modal: true, position: { my: "right top", at: "right top", of: window } }); $('#open_test2').click(function() { $('#test2').dialog('open'); }); })
once second dialog opened, still able click on first dialog !
here link fiddle shows trying achieve: http://jsfiddle.net/jc4t5/1/
thanks lot in advance !
this has been fixed jquery ui 1.11.2 release.
Comments
Post a Comment