I have an input field that I define as a datepicker through a css class. I now want to clone this input field and have it so the cloned inputs are also datepickers.

After reading from various sources I was lead to believe that the following code should work but it doesn't. I was hoping maybe someone could help me figure out what I was doing wrong :)

<input type="text" id="date" name="date" class="calendar" />
<input type="button" id="clone" name="clone" value="Clone dates" />

And here's the javascript:

<script type="text/javascript">
$(document).ready(function(){

 $('.calendar').datepicker();

 $('#clone').click(function()
 {
  $('.calendar:last').clone().append().insertAfter('.calendar:last');
 });

});

</script>

So far the input field is duplicated and is inserted at after the last instance but the datepicker doesn't work. I tried passing 'true' to the clone function but it gave me an error saying that inst wasn't defined.

Any help would be appreciated :)

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

Change it to this:

$('.calendar:last').clone(false).removeClass('hasDatepicker').insertAfter('.calendar:last').datepicker();
link|improve this answer
It clones the input but it doesn't create the datepicker object (it doesn't give an error either which makes it even more confusing) – Gazillion Mar 1 '10 at 20:43
Apparently you have to remove the 'hasDatepicker' class before calling datepicker() again. I've updated the post. – David Morton Mar 1 '10 at 20:50
Thanks! That fixed it! – Gazillion Mar 1 '10 at 20:53
I played around with the code to understand it a bit more and it seems jQuery uses that class name as a flag to know whether the input has already been initialized. Adding it to a second input keeps the object from becoming a datepicker. Interesting :) Thanks again, I'll go to bed smarter tonight! – Gazillion Mar 1 '10 at 21:00
Removing 'hasDatepicker' class is enough. – mnowotka Mar 8 at 15:30
feedback

to bad I can't comment anymore on the answer given above, but the code still fales! The datepicker shows up at the cloned input element , but uses the selected date value in the original input field and leaves the cloned input field blank .. Any suggestions?

edit:

Using the following code fixed it for me..

$('.datum',clone).removeClass("hasDatepicker").attr('id',"").datepicker();

( note that I have cloned a wrapper , and am only targeting the 'datum' input field in that wrapper )

After removing the class as suggested above , I also remove id of the cloned input element. It's the same as the original, so that's why I was updating the original input field with the selected date in the datepicker box.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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