up vote 6 down vote favorite
1
share [g+] share [fb]

I am looking for a JavaScript modal dialog solution for asp.net, jquery UI dialog seems good but it move dialog container to bottom of body tag. I changed the dialog code to stay dialog to asp.net form but still it's out of updatepanel.

Is there any solution or more compatible dialog that doesn't break asp.net form lifecycle?

Thanks

link|improve this question

35% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Why not put the UpdatePanel inside the dialog container?

link|improve this answer
I add an UpdatePanel inside the dialog. the dialog work OK but previous UpdatePanel doesn't update. I Update both UpdatePanel Manually but only one UpdatePanel Update. – Nima Dec 31 '08 at 6:15
You have to call .Update() on all of the panels that you want updated in the code behind. – Robert C. Barth Dec 31 '08 at 20:40
I tested, it doesn't work – Nima Jan 3 '09 at 4:50
this worked! woo hoo! – craigmoliver Oct 7 '10 at 16:41
feedback

When jquery creates a dialog its appends the dialog div to the body tag. And this effectively moves it outside the form tag and hence no post back. The solution is trivial and this blog http://blog.roonga.com.au/2009/07/using-jquery-ui-dialog-with-aspnet-and.html explains it with example.

link|improve this answer
Useful link, thanks – Nick May 10 '10 at 13:54
+1 cool!! it wrks – NitinJS Aug 2 '11 at 6:47
feedback

While I'm not sure that I know precisely what you are asking, Dave Ward has a couple of nice articles on this: http://encosia.com/2008/10/11/using-jquery-to-display-a-modal-updatepanel-confirmation/ and http://encosia.com/2008/10/04/using-jquery-to-enhance-aspnet-ajax-progress-indication/. Both articles use the jQuery BlockUI plug-in.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.