How To Set Or Position BlockUI On Top Of jQuery UI Dialog
Good day!
I have this requirement to show an overlay message using BlockUI on top of a jQuery UI Dialog. Assuming that these two are modals, I can't show the progress message on top of the jQuery UI Dialog. I found the solution in stackoverflow that is to set the z-index of BlockUI to 2000.
I have this requirement to show an overlay message using BlockUI on top of a jQuery UI Dialog. Assuming that these two are modals, I can't show the progress message on top of the jQuery UI Dialog. I found the solution in stackoverflow that is to set the z-index of BlockUI to 2000.
$.blockUI({
message: '<h3>Saving of record in progress...</h3>',
baseZ: 2000
});
Comments
Post a Comment