> the entire page but only draw the overlay and message on the table
> portion. What's the best way to do this? Can I block the div as I am
> now and still call $.blockUI with no message in order to block input
> to the entire page
Yes, you can do that. To block the page without a message and without
the overlay try this:
$.blockUI({
message: null,
overlayCSS: {
opacity: 0
}
});
No comments:
Post a Comment