Need to know when the updatePanel is done loading

Last post 08-14-2007 10:03 PM by gt1329a. 1 replies.

Sort Posts:

  • Need to know when the updatePanel is done loading

    08-14-2007, 7:40 PM

    I have a update panel inside of my design. Currently when there is an update done in the center box the footer does not get pushed to the bottom.

     I have a javascript script called SetFooter() and it works when it is called correctly. Is there an onPanelDoneLoading arround that can fix my issue.

  • Re: Need to know when the updatePanel is done loading

    08-14-2007, 10:03 PM
    Answer
    • Star
      13,595 point Star
    • gt1329a
    • Member since 06-23-2002, 8:53 PM
    • Atlanta
    • Posts 2,248
    • ASPInsiders
      TrustedFriends-MVPs

    Handle Sys.WebForms.PageRequestManager.EndRequest:

    Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequest)

    function EndRequest(sender, args)
    {
    SetFooter();
    }
      
    Encosia - ASP.NET, jQuery, AJAX, and more.

    Latest article: Emulate ASP.NET validation groups with jQuery validation
Page 1 of 1 (2 items)