Rank: Member Groups: Member
Joined: 8/16/2009 Posts: 13
|
I have a page that is very similar to the Dialog, Input Blocker example. It does the following:
1) Show Message Box (asks user to delete record) using Server Side Message Box. 2) Shows 'Loading' Modal Dialolog while completing Delete Operation
The problem is however that the when the Delete Operation completes the Modal Dialog disspears but the Message Box is still there.
How can I remove/hide the Message box when the Modal Delete Operation Completes?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
A message box should automatically close when the page posts back. If that does not happen, check whether you have any AJAX panels (UpdatePanel/CallbackPanel) that is limiting the scope of the update. If you do, try remove those and get it working first. Once you have it working without any AJAX panel, you can then start to put them back in one by one.
If that is not the problem, please post a test page that demonstrates the problem and we will be happy to take a look.
Thanks!
|