vote up 14 vote down star
5

I have several input and option elements on my page, each (well almost) have an event attached to update some text on the page once they change. I use JQuery which is really really cool :) I also use microsofts ajax framework, utilizing the UpdatePanel. The reason why i do that is that certain elements are created on the page based on some server-side logic. I don't really want to explain why i use the UpdatePanel - even if it could (it can with quite some effort) be rewritten to use only jquery i still want that UpdatePanel.

You probably guessed it - once i have a postback on the UpdatePanel the jquery events stops working. I actually was expecting this, since the "postback" is not really a new postback so my code in document.ready that binds the events won't be fired again. I also confirmed my suspicion by reading up on it in the jquery help libraries.

Anyways I'm left with the problem of rebinding my controls after the UpdatePanel is done updating the DOM. I preferably need a solution that does not require adding more .js files (jquery plugins) to the page but something as simple as being able to catch the UpdatePanel's 'afterupdating' where i can just call my method to rebind all the form elements.

flag

This is very similar to this question: stackoverflow.com/questions/256195/… – Dan Herbert Nov 9 at 2:07

6 Answers

vote up 15 vote down check

Since you're using ASP.NET AJAX, you'll have access to a pageLoad event handler, that gets called each time the page posts back, be it full or partial from an UpdatePanel. You just need to put the function in to your page, no hooking up required.

function pageLoad(sender, args)
{
   if(args.get_isPartialLoad())
   {
       //Specific code for partial postbacks can go in here 
   }
}
link|flag
Right you are! Thanks :) – Hojou Nov 19 '08 at 10:39
No problem - that's just one way of doing it btw. If you need more flexibility, check out the endRequest event on the PageRequestManager class. – Phil Jenkins Nov 19 '08 at 10:43
Lifesaver for me! Thanks – peiklk Apr 29 at 14:54
Awesome! I replaced my jquery $(document).ready with your pageLoad (without the if block) and it solved my problem! – Chris Jul 10 at 4:16
Caution: only one "pageLoad" function executes on page - the last one defined. So if actions that need to be executed reside on different controls - there are easier ways to achieve required behavior - like "Sys.Application.add_load". – Paulius Sep 3 at 8:34
vote up 1 vote down

You could use jQuery and event delegation. basically hook events to containers rather than every element and query the event.target and run script based on that.

It has multiple beenfits in that you reduce the code noise (no need to rebind) it also is easier on browser memory (less events bound in the dom)

Quick example here

jQuery plugin for easy event delegation

P.S I am 99% sure delegation will be in the jQuery core at the next release

link|flag
vote up 4 vote down
Sys.Application.add_load(initSomething);
function initSomething()
{
  // will execute on load plus on every UpdatePanel postback
}
link|flag
vote up 4 vote down

Or you could check the latest jquery's live functionality ....

link|flag
vote up 1 vote down

Use following code

Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(pageLoaded);

function pageLoaded(sender, args) {
    var updatedPanels = args.get_panelsUpdated();
    // check if Main Panel was updated 
    for (idx = 0; idx < updatedPanels.length; idx++) {
        if (updatedPanels[idx].id == "<%=upMain.ID %>") {
            rebindEventsForMainPanel();
            break;
        }
    }
}
link|flag
vote up 1 vote down

Are there any methods available to find the id of the object that triggered the event?

link|flag
On the server or client end? If you're on the server side, you can see this answer here: stackoverflow.com/questions/1426088/… on the client side you could hook into the beginRequest event, and inspect args.get_postBackElement() - see msdn.microsoft.com/en-us/library/… – Zhaph - Ben Duguid Sep 25 at 22:49

Your Answer

Get an OpenID
or

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