[jQuery] Is it possible to use jQuery BlockUI inside a User Control in .NET ?
Hello buddys
I am a ASP.NET developer and I would like to use the jQuery BlockUI
inside a generic control, designed to show a popup (with javascript
and CSS effects). My problem is to disable (key tab, enter and mouse
clicks) the parent window (parent element) (my control is inside the
page and does not use iframe).
Inside my control I have a DIV and I show his content when the user
call the method designed.
The problem is: I only see the "caller" of BlockUI using this type of
eventhandler "CLICK", ex:
$('#pageDemo2').click(function() {
$.blockUI({ message: '<h1><img src="busy.gif" /> Just a
moment...</h1>' });
test();
});
It is possible apply that property inside the blockUI out of my DIV
(parent element), inside my control, without click ? Is it necessary
to use a iframe?
I try other ways and do not work for me....
Regards,