Rank: Advanced Member Groups: Member
Joined: 4/22/2008 Posts: 75
|
Your Dialog Control can be used as n imput/loading Blocker for you Callbackpanel is there a way to tie this to the MS Ajax Update panel or do they not play well together?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, They work together fine. The difference is CallbackPanel has this built-in and UpdatePanel does not. So with UpdatePanel you will need to do that manually. The basic flow is that you will handle ASP.NET AJAX PageRequestManager's beginRequest and endRequest event, and show the dialog in your beginRequest handler, hide the dialog in your endRequest handler. MS has a good example demonstrating how to handle these two events: http://msdn.microsoft.com/en-us/library/bb397432.aspxThanks
|