I have a modal window opened on top of another window (not modal). When I drag and drop that modal window, everithing on the page is selected.
My code seems to be normal:
$(jdiv).jqxWindow({
showCollapseButton: true,
height: item.janela_altura,
width: item.janela_largura,
maxHeight: 1000,
maxWidth: 1000,
resizable: false,
isModal: item.isModal,
title: item.menu_titulo,
theme: ‘energyblue’,
//autoOpen: true, //pedro 06/07
closeButtonAction: ‘close’, //pedro 06/07
initContent: function () {
$.get(frm + ‘.php’, function (data) {
$(‘#corpo_001_’ + item.menu_nome).html(data);
}).done(function () {
var funcao_init = eval(‘init_’ + item.cdg_frm);
funcao_init();
if (callback) {
return callback($(jdiv));
}
}).fail(function (jqxhr, settings, exception) {
console.error(exception);
});
}
});
Can somebody help with this ?
Tks