Even though I have set the dialog modal to true, and have also tried setting it's options.modal = true before opening, it simply refuses to open as modal.
How can I track down why this might be ?
$('#_query_').dialog({
modal: true,
title: 'My Modal',
width: 400,
height:'auto',
closed:true,
iconCls:'icon-filter'
})
var dl = $('#_query_');
dl.dialog('open');
dl.dialog('move',{left:50,top:50});
dl.dialog('options').modal = true;
Thanks