jquery datepicker ms ajax updatepanel doesn't work after post back - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T03:32:27Z http://stackoverflow.com/feeds/question/520645 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/520645/jquery-datepicker-ms-ajax-updatepanel-doesnt-work-after-post-back 2 jquery datepicker ms ajax updatepanel doesn't work after post back Jon http://stackoverflow.com/users/6486 2009-02-06T15:13:25Z 2009-10-23T11:07:43Z <p>Hi all,</p> <p>So I did some reading of the related questions and had some interesting stuff but did not find my answer, at least did not understand the answer.</p> <p>I am very new to AJAX, javascript and sclient side scripting in general.</p> <p>I have been using C# asp.net for a bit and recently added some updatepanels to my side to smooth so of the user controls and bits being updated so that the page was not reloaded each time. All works brilliantly and I was very happy with it till I decided to try and use some JQuery.</p> <p>I have picked up the datepicker from ui.jquery.js which is cool and works great on a normal page. My problem arrives when I do a postback from within an updatepanel. The datepicker just stops working.</p> <p>from what I have read I need to manually wire this back up after the post back.</p> <p>1) I don't really understand why. on my master page I have:</p> <pre><code>&lt;script type="text/javascript"&gt; $(function() { $(".mydatepickerclass").datepicker({dateFormat: 'dd-mm-yy'}); }); &lt;/script&gt; </code></pre> <p>which picks up my input boxes with the mydatepickerclass assigned. and all works. Why would this stop working on the postback.</p> <p>2) How do I fix this.... how do I wire it up so that after a postback in an updatepanel it still works.</p> <p>I understand that the ID might change on a postback, I think but as I am using classes I don't know what is going wrong.</p> <p><strong>edit</strong></p> <p>I have the following code in my usercontrol where the update is happening:</p> <pre><code>&lt;asp:UpdatePanel ID="HistoryUpdatePanel" runat="server"&gt; &lt;ContentTemplate&gt; &lt;%-- Start of Company History section --%&gt; &lt;fieldset&gt; &lt;legend&gt;Activity History&lt;/legend&gt; &lt;script type="text/javascript"&gt; $(function() { $(".mydatepickerclass").datepicker({dateFormat: 'dd-mm-yy'}); }); &lt;/script&gt; &lt;div&gt; &lt;asp:ListBox ID="listBoxHistoryTypes" runat="server" SelectionMode="Multiple" AutoPostBack="true" OnSelectedIndexChanged="listBoxHistoryTypes_IndexChanged" /&gt; &lt;label&gt;Date From:&lt;/label&gt;&lt;asp:TextBox class="mydatepickerclass" ID="txtdatefrom" runat="server" /&gt; &lt;label&gt;Date To:&lt;/label&gt;&lt;input class="mydatepickerclass" type="text" /&gt; &lt;asp:TextBox class="mydatepickerclass" ID="txtdateto" runat="server" /&gt; &lt;asp:Button ID="btnFilterSearch" runat="server" Text="Filter Results" OnClick="btnFilterSearch_Click" /&gt; &lt;/div&gt; &lt;/fieldset&gt; &lt;/ContentTemplate&gt; </code></pre> <p></p> <p>Does the script inside the updatepanel not rewire it?</p> <p>Thanks</p> <p>Jon Hawkins</p> http://stackoverflow.com/questions/520645/jquery-datepicker-ms-ajax-updatepanel-doesnt-work-after-post-back/520683#520683 6 Answer by bendewey for jquery datepicker ms ajax updatepanel doesn't work after post back bendewey http://stackoverflow.com/users/37881 2009-02-06T15:20:25Z 2009-02-08T21:20:55Z <p>the update panel is going to reload the contents of the html. You'll have to listen for the UpdatePanel to complete and recreate the datepicker. </p> <p>Here is a very basic sample. This doesn't take into account multiple update panels on your page or potential memory leaks from not properly destroying your datepicker. </p> <p>Another thing to note when mixing ASP.NET Ajax and jQuery be careful because the both use the $ in different contexts</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head runat="server"&gt; &lt;title&gt;&lt;/title&gt; &lt;script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.1.js"&gt; &lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler); function EndRequestHandler(sender, args) { $('.mydatepickerclass').datepicker({ dateFormat: 'dd-mm-yy' }); } }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="form1" runat="server"&gt; &lt;div&gt; &lt;/div&gt; &lt;asp:ScriptManager ID="ScriptManager1" runat="server"&gt; &lt;/asp:ScriptManager&gt; &lt;asp:UpdatePanel ID="UpdatePanel1" runat="server"&gt; &lt;ContentTemplate&gt; &lt;asp:TextBox ID="TextBox1" runat="server" CssClass="mydatepickerclass"&gt;&lt;/asp:TextBox&gt; &lt;br /&gt; &lt;asp:Button ID="Button1" runat="server" Text="UpdateMe" onclick="Button1_Click" /&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/520645/jquery-datepicker-ms-ajax-updatepanel-doesnt-work-after-post-back/1612742#1612742 0 Answer by Kath Stennett for jquery datepicker ms ajax updatepanel doesn't work after post back Kath Stennett http://stackoverflow.com/users/195240 2009-10-23T11:07:43Z 2009-10-23T11:07:43Z <p>This is very useful except that results are odd if there is more than on ajax panel containing a datepicker on the page. All of the date-pickers get wired to one of the text boxes. Is there a solution to this too?</p>