For those who have recently read this, the option has overlaybeen removed. You have to do this with CSS canceling now
.ui-widget-overlay {
opacity: 0;
filter:Alpha(Opacity=0);
}
Or if you want it to be a bit transparent, something like this
.ui-widget-overlay {
opacity: 0.2;
filter:Alpha(Opacity=20);
}
source
share