Sunday, February 1, 2009

[jQuery] Re: BlockUI: multiple blocks

> data in the table. What I'd really like to do is block user input on
> 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: