I'm trying to show an "ajax loader dialog" that blocks the interface (modal) but has no overlay.
This is how I initialize the dialog:
$("<div></div>").dialog({
modal: true,
dialogClass: "noOverlayDialog",
autoOpen: false, //opened later
...
});
I added the following CSS to hide the overlay :
.ui-dialog.noOverlayDialog + .ui-widget-overlay { opacity: 0 !important; }
However, when I call dialog("open") the overlay flashes then disappears, as if I had hidden it using Javascript. Same effect using display:none; or visibility:hidden.
To make sure it was the css removing the overlay and not something else, I removed the line of css and surely enough the overlay was now always visible.
Why is this happening? I thought static CSS should not have this kind of behavior and the overlay should be hidden immediately without a flash.
If I can't find an intuitive solution, perhaps an alternative would be to set modal option to false to prevent the overlay all together, and then write code to get the modal behavior. Either way, I need a working solution.

.noOverlayDialog. If that doesn't change you suggestion, please answer (not comment) with an example and I will try it. Thanks – parliament Jan 26 at 23:43