vote up 0 vote down star

Hello,

I have this in my javascript file:

$("#birthdate").datepicker({
			changeMonth: true,
			changeYear: true,
			altFormat: 'dd-mm-yy',
			altField: '#birthdate',

			 });

I have various pages which have fields that need a datepicker. Sometimes even more then one datepicker on a page. How can I be sure that this is also going to work for a field that has for example class name "alternateDate"?

I tried

 $("#birthdate #alternateDate").datepicker({

But that's not going to work.

Any idea's?

flag

72% accept rate

5 Answers

vote up 0 vote down

Hmm still got a problem with the date format.

$.datepicker.formatDate('dd-mm-yy');
    		$(".datepicker").datepicker({
    			changeMonth: true,
    			changeYear: true,
    		 });

Here is my html

<label for="geboortedatum">Geboortedatum <em>*</em></label><br/><input type="text" class="datepicker" id="birthdate" name="birthdate" value="{$birthdate}"><br/>

But the format in the datepicker input field is still shown as 04/01/2009

meaning mm/dd/yy

Any idea's?

link|flag
Try the options in my answer, above. Specifically using the dateFormat option inside the .datepicker() initializer. – boflynn Apr 22 at 19:44
Thanks for your reactions but can't find a good example on how to implement id in your link. This also won't work: $(".datepicker").datepicker({ changeMonth: true, changeYear: true, formatDate: 'dd-mm-yy' }); – sanders Apr 22 at 19:51
Use dateFormat, not formatDate, for the option inside datepicker(). – boflynn Apr 22 at 19:54
vote up 0 vote down

Thanks for the reactions. But what would you then do with the alt Field?

link|flag
1  
What are you trying to accomplish with altField? Looking at your example, you've got #birthdate as the altField for itself. If all you want to do is format the date the user picks, use the dateFormat option. – boflynn Apr 22 at 17:31
The reason I use the altField is to force the alt format. because without the altFormat my field is always displayed as `mm/dd/yy in stead of dd-mm-yy – sanders Apr 22 at 18:14
Try reading about dateFormat at docs.jquery.com/UI/Datepicker#dateFormat. I've revised my answer to include this option. – boflynn Apr 22 at 18:43
vote up 4 vote down

How about adding a class to the fields you want to turn into date pickers. For example:

<input type="text" id="birthDate" class="MyDatePickers">
<input type="text" id="alternateDate" class="MyDatePickers">

Which you can activate with:

$(".MyDatePickers").datepicker({
                    changeMonth: true,
                    changeYear: true,
                    dateFormat: 'dd-mm-yy'
                     });
link|flag
+1: Using classes like this would be best. @Sanders: You don't need to specify the altField if it's the same as the controlID. – Jon Tackabury Apr 22 at 19:00
vote up 0 vote down

Miguel,

You might not have understood my question well. What I mean to say is that #birthdate and #alternateDate are not necessarily on the same page. So I want to have one datePicker function but i want it to be used not only by an input field which has the class birthDate but also by some other classes.

How can I accomplish this?

link|flag
vote up 1 vote down

In your example, you are referring to two id's (because of the symbol #). Maybe you can try to iterate through the collection of alternateDate elements:

$('#birthdate.alternateDate').each(function(index){ $(this).datepicker({...}) });

Disclaimer: I do not know the exact jquery iteration syntax, but I'm positive it is something like this.

link|flag

Your Answer

Get an OpenID
or

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