up vote 42 down vote favorite
25
share [g+] share [fb]

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.

Anyway 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 plug-ins) 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.

link|improve this question

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

protected by Bill the Lizard Dec 15 '10 at 18:34

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

9 Answers

up vote 43 down vote accepted

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 is required.

function pageLoad(sender, args)
{
   if (args.get_isPartialLoad())
   {
       //Specific code for partial postbacks can go in here.
   }
}
link|improve this answer
Right you are! Thanks :) – Per Hornshøj-Schierbeck 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 '09 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 '09 at 4:16
7  
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 '09 at 8:34
feedback

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

link|improve this answer
This was the best solution for me, as much of my jQuery markup is encapsulated inside several user controls on the page. – Kyle B. Sep 6 '10 at 15:57
can you post example with datepicker? – Perica Zivkovic Jan 12 '11 at 11:32
Whoah, way better than rebinding on postback. Thanks for the tip! – Matt Nov 8 '11 at 21:04
feedback
Sys.Application.add_load(initSomething);
function initSomething()
{
  // will execute on load plus on every UpdatePanel postback
}
link|improve this answer
This one worked really good for me for making a jQuery ASP.Net control work inside of an update panel – Earlz May 20 '10 at 17:43
+1 this helped me as a work around for some other problem. Thank you very much. – iSid May 27 '10 at 9:14
Thanks for providing a workaround for only having one function pageLoad(sender, args) on page – SQueek Jan 7 '11 at 16:32
feedback

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|improve this answer
feedback

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 benefits in that you reduce the code noise (no need to rebind). It is also 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|improve this answer
feedback

Bind your events using jQuery's new 'live' method. It will bind events to all your present elements and all future ones too. Cha ching! :)

link|improve this answer
feedback

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

link|improve this answer
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/bb397432.aspx – Zhaph - Ben Duguid Sep 25 '09 at 22:49
feedback

         <script type="text/javascript">
             function pageLoad() {

                 if (Sys.WebForms.PageRequestManager.getInstance().get_isInAsyncPostBack()) {


       }

            </script>

        </ContentTemplate>
    </asp:UpdatePanel>

into of the "if" you can put the code that you need execute every time that the updatepanel does AsyncPostBack.

link|improve this answer
feedback

Use the following code, You need to validate the control will use the datapicker:

    <script type="text/javascript" language="javascript">

         Sys.WebForms.PageRequestManager.getInstance().add_endRequest(addDataPicker); 
         function addDataPicker(sender, args)
         {
            var fchFacturacion = document.getElementById('<%= txtFechaFacturacion.ClientID %>');
            if (fchFacturacion != null) {
               $(fchFacturacion).datepicker({ onSelect: function () { }, changeMonth: true, changeYear: true, showOn: 'button', buttonImage: '../Imagenes/calendar.gif', buttonImageOnly: true});}
         } 

    </script>

     <asp:UpdatePanel ID="upEjem" runat="server" UpdateMode="Conditional">
       <ContentTemplate>
              <div id="div1" runat="server" visible="false">
                  <input type="text" id="txtFechaFacturacion" 
                      name="txtFechaFacturacion" visible="true"
                      readonly="readonly" runat="server" />
              </div>
       </ContentTemplate>
     </asp:UpdatePanel>
link|improve this answer
feedback

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