Jquery UI dialog内で操作できない問題zIndex

353 ワード

Jquery UI dialogのポップアップウィンドウのデフォルトz-index値は1000であるため、ウィンドウ内の要素に1000未満のz-indexが設定されている場合は操作できないため、ポップアップウィンドウを初期化する際にz-index値を変更すればよい.
 
$('#add-form').dialog({
    autoOpen: false,
    height: 322,
    width: 608,
    modal: true,
    zIndex: -1,
    close: function() { },
    open:function(event, ui){ }
});