I'm working with a dynamic DOM here, and have called the jQuery UI datepicker to all inputs with a specific class name, in this case .date

It works great with the first, static, construct but when I clone it the event handlers don't seem to want to move over. I get the Firebug error:

inst is undefined

I tried looking into jQuery's new live() function but couldn't combine the two. Any ideas?

link|improve this question

feedback

8 Answers

up vote 16 down vote accepted

Ah, got it. Right after I append the HTML to the DOM I run this on all the inputs I'd like to have a datepicker pop up with. Datepicker adds a class to elements it has been attached to, so we can filter out existing inputs and only apply it to new ones.

$('.date').not('.hasDatePicker').datepicker();

I hope this helps people as I was Googling for days and didn't find anything!

You should also note that it would be faster to check for input.date in the new generated HTML by setting that as a context, rather than the whole page, as it will save time, due to this being a more efficient operation.

If you're using .clone() and .appendTo() you have to remove the 'hasDatepicker' class from the cloned element and unset the 'id' attribute like so

$('.date').last().removeClass('hasDatepicker');
$('.date').last().removeAttr('id');
$('.date').last().datepicker();
link|improve this answer
2  
Will, Thanks a lot! You saved a couple hours of my life :) – Nikita Fedyashev Oct 7 '09 at 18:36
5  
When using a dynamic DOM this solution didnt help me when I was (jquery) cloning table rows with events. My solution was to do $('.date').removeClass('hasDatepicker').datepicker(); – David Liddle Feb 1 '10 at 12:22
David, what jQuery core and UI version are you using? This was for 1.3.2 and 1.7 respectively, and the solution has worked with other implementations. Whatever floats your boat though! – Will Morgan Feb 1 '10 at 14:41
feedback

You need to use the 'live' event to make it work with dynamic DOM. So, if the class for your datepicker inputs is 'date-input', following code will make it work:

$(document).ready(function() {
    $('.date-input').live('click', function() {
    $(this).datepicker('destroy').datepicker({showOn:'focus'}).focus();
        });
});
link|improve this answer
1  
No. You're recreating a datepicker every time the input is clicked, which is not performant. – Will Morgan Sep 1 '10 at 12:28
+1 for simple and works when had problems with other solution – Matt Oct 20 '11 at 9:21
@WillMorgan Working usually trumps performance. – Daniel X Moore Jan 10 at 1:01
Then I imagine you're the kind of programmer who doesn't take pride in his work. – Will Morgan Jan 18 at 10:30
Actually, your solution worked for me. Thanks :) – Francisco Ochoa Apr 17 at 20:47
feedback

I had a similar Issue, I had multiple tables on a page and each had multiple datepickers, also on click of button "AddLine" it added a table row with dynamic HTML and datepicker.

I realized after a lot of search that my input date fields had no "id" defined they looked like this

<input type="text" class="datepicker" name="mDate1" value="" size=8 >

jquery was pointing all the date fields values to the very first date field defined on page, the calendar would popup on all the date fields but the value of 1st date field would change, I made a change to the html like this

<input type="text" class="datepicker" id="Date1" name="mDate1" value="" size=8 >

by adding a "id" and it started working, for the dynamic date fields I change the Id like this

var allColumns = $("#"+$tableId+" tr:last td"); 
		$(allColumns).each(function (i,val) {
			if($(val).find(":input").hasClass("datepicker")){
			 	$(val).find(":input").attr("id",newId+$(val).find(":input").attr("id"));
			}
    	});
link|improve this answer
feedback

Use jQuery selectors:

$(".mydatepicker:not(.hasDatepicker)").datepicker()
link|improve this answer
feedback

Multiple instances of the jquery-ui library on the page will cause this error too. Removing redundant instances work for my case

link|improve this answer
feedback

I experienced the same symptom, in this caused by having a td containing element with the same id attribute as the input,

 <td id="fld_xyz"><input id="fld_xyz" class="date" /></td>

I know this isn't ideal anyway, but it's worth knowing that the datepicker component seems to be relying on the uniqueness of the id.

link|improve this answer
Yes. IDs are supposed to be unique. If you want to identify a multiple elements of the same class, then use the class attribute. – Will Morgan Dec 21 '11 at 14:45
feedback

I had this problem. My situation ended up being I had another element with the same ID as the input with the datepicker.

link|improve this answer
I had the same issue - the div enclosing the input text field had the same ID as the text field. Removing the id on the div fixed the issue. – user202262 Feb 5 '10 at 1:17
feedback

Use $j(id or class).removeClass('hasDatepicker').datepicker();

It is working

link|improve this answer
You're not destroying the datepicker, though, which means you're essentially rebinding something each time that code is triggered. So instead of one datepicker, you'll have two (or it'll happen twice - not tested). So yeah, it might look like it works, but it won't function optimally. – Will Morgan Mar 15 '10 at 11:40
It's not happening twice . It is working perfectly fine – kishore Mar 22 '10 at 20:23
1  
Unfortunately, what you're doing in addition to setting datepickers on new elements, is rebinding everything to previously created elements which is going to take up memory. This might not be noticeable over short periods of time, but if the page never reloaded and you did this many times, you would notice a difference. It's generally considered good programming practice to look after memory :) – Will Morgan Mar 24 '10 at 20:20
feedback

protected by Jeff Atwood Jun 7 '10 at 21:23

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.

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