vote up 2 vote down star

I have an asp.net page with a save button within an updatepanel and contenttemplate. The save works nicely, but I am trying to add a "wait" gif while the save is happening using JQuery, but the ajaxStart event is not firing. I put a simple catch shown below:

        $(document).ajaxStart(function(){
            alert('starting');
        }).ajaxStop(function() {
            alert('done');
        });

No alerts show when I click the save. Is there a problem when trying to capture ASP.net Ajax events, is asp doing some funky type of Ajax calls that can't be captured by Jquery?

Thanks, let me know if you have any ideas about this,

Mark.

flag

@Mark - I added a couple more tags to this... – RSolberg Mar 5 at 22:15

1 Answer

vote up 2 vote down check

The ASP.NET update panels seem to do their own thing... Tap into the PageReuqestManager and setup your own calls here...

EDIT
I simplified the functions a bit below to match your sample a little more...

    <script type="text/javascript">
        function pageLoad() {
            if (!Sys.WebForms.PageRequestManager.getInstance().get_isInAsyncPostBack()) {
                Sys.WebForms.PageRequestManager.getInstance().add_endRequest(AjaxEnd);
                Sys.WebForms.PageRequestManager.getInstance().add_initializeRequest(AjaxBegin);
            }
        }

        function AjaxEnd(sender, args) {
           alert("I am done...");
        }

        function AjaxBegin(sender, args) {
            alert("I am about to start...");
        }
   </script>
link|flag
This does require a ScriptManager control to be on the page which Mark may or may not have. – Jon Erickson Mar 5 at 22:06
If he has an update panel on the page, he has it! – RSolberg Mar 5 at 22:07
@RSolberg you are right. =) – Jon Erickson Mar 5 at 22:09
@Jon - I've been waiting for you to say that for months now... About time! – RSolberg Mar 5 at 22:10
Thanks guys, and yes RSolberg, you are right. :) – Mark Kadlec Mar 6 at 0:15
show 1 more comment

Your Answer

Get an OpenID
or

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