Click here to Skip to main content
Click here to Skip to main content

JavaScript Access to Page Controls after Ajax Update (via Update Panel)

By , 22 Sep 2008
 

Introduction

Several times, we are in a situation where we need to do some work the moment the update panel finishes its update (ASP.NET 2.0 AJAX). There are situations like showing an error if any during the update, showing a success message after a proper update, setting up scroll bars, changing some UI component, updating some other part of UI, etc. The list can get longer as per the developer's requirement. I had tried to show how we can get control to the page once the update is finished. We can tweak things via JavaScript the way we need to out there in the handler.

Background  

Earlier I too faced lots of problem and was unable to work out of how to handle anything JUST after an update of update panel. I found lots of my colleagues facing the same issue. They wanted to have a certain UI work like scroll or to trap an error after the update. I found there was no article on The Code Project for the same. It was a real difficult time for my friends to find out the way to handle it. So I planned to write up a demo as soon I had some time. 

Using the Code 

The thing that we are going to use is "adding an end-request handler to the request-manager".

We add the handler to the request manager during page load via JavaScript.

Code example:

function LoadAfterAjaxHandler() 
{
    //Handler attached to the request
    Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
}

Now, after having this piece of code in place, whenever the update panel finishes its update, the request would go through the EndRequestHandler.

EndRequestHandler needs to be placed now.  In the handler, one can write whatever requirement one asks for. Errors can be trapped, scrolls can be set, any UI component can be updated.

Code example:

function EndRequestHandler(sender, eArgs) 
{            
   /*
   1. Alert/Message if any after update
   2. Error handling if any
   3. Scroll position set again
   4. Focus/UI update if any
   */
   //Example
   if (eArgs.get_error() == null)
   {
      // Do all the stuffs needed after update through JavaScript here. 
      //1. Alert / Show window / Show Dialog
      //alert("Update was successful");
      //2. Page Controls accessed via JavaScript
      document.getElementById("lblTest").innerText = "Update Successful";
      //3. Page scrolls can be set if needed
      //Set Scroll Position
   }
   else
   {
      // There was an error in the update panels update 
      // caught here and message displayed via JavaScript               
      document.getElementById("lblTest").innerText = 
              "There was an error in update:"+eArgs.get_error().message;
   }
} 

As it can be seen, in the handler one can do all the possible things to a page via JavaScript. I have attached a sample codebase for the same.

Points of Interest

Working with AJAX is fun and it gets more interesting when we can have solutions to all possible scenarios while using it. For example, having a page history while using AJAX was earlier a problem, but lately I came to know that in .NET 3.5, Microsoft has provided AJAX calls history too! That's interesting, isn't it? 

History

  • 23rd September, 2008: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Sandeep Mewara
Software Developer (Senior)
India India
Member
From Bangalore, India.
My blog: http://smewara.wordpress.com/

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Generalabout sender._updatePanelIDsmemberAli Al Omairi(Abu AlHassan)4 Feb '11 - 8:01 
Sir, I have added some code to EndRequestHandler(sender, eArgs) to handel every update panel in a separated manner.
 
Take a look.
 
           for (i = 0; i < sender._updatePanelIDs.length; i++){
                switch(sender._updatePanelIDs[i]){
                    case 'upTest' :
                        // do something.
                        break;
                }
           }
 
100 Rose | [Rose] Wink | ;)
Help people,so poeple can help you.

GeneralMy vote of 5memberAli Al Omairi(Abu AlHassan)4 Feb '11 - 7:11 
GeneralMy vote of 1memberAshish Tyagi 4015 Jan '11 - 9:25 
GeneralRe: My vote of 1memberAnkur\m/20 Jan '11 - 18:59 
GeneralRe: My vote of 1mvpSandeep Mewara20 Jan '11 - 19:39 
GeneralRe: My vote of 1memberAnkur\m/20 Jan '11 - 19:51 
GeneralMy vote of 5memberJFergulbops17 Oct '10 - 23:25 
Generalif you are using MasterPagemembergarfitr5 Apr '10 - 2:42 
Generalvery nicemembermr_sawari23 Feb '10 - 1:12 
AnswerRe: very nicememberSandeep Mewara23 Feb '10 - 2:08 
Generalthanksmembergaetanocv6 May '09 - 9:08 
AnswerRe: thanksmemberSandeep Mewara9 Jun '09 - 19:13 
QuestionNice articlemembershalan9912 Nov '08 - 10:55 
AnswerRe: Nice article [modified]memberSandeep Mewara26 Nov '08 - 18:32 
GeneralRe: Nice articlememberjohram23 Mar '09 - 0:23 
GeneralGood articlememberachuki119 Oct '08 - 23:24 
GeneralRe: Good articlememberSandeep Mewara20 Oct '08 - 1:20 
GeneralGood work!memberchkumar14 Oct '08 - 6:37 
AnswerRe: Good work!memberSandeep Mewara15 Oct '08 - 2:51 
GeneralNice!memberAki8211 Oct '08 - 8:27 
AnswerRe: Nice!memberSandeep Mewara11 Oct '08 - 20:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 23 Sep 2008
Article Copyright 2008 by Sandeep Mewara
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid