It happens once in a while but if i enter the date direclty in the input, the widget does not update with the date i manually entered.

See by yourself : http://screencast.com/t/Fz2ecsGte3T (the date format is dd/mm/yyyy).

I don't know why or how this happens. But it happens (10% of the time).

My Jquery versions are :

  • jquery-1.4.3.min.js
  • jquery-ui-1.8.16.custom.js

Unfortunatly, I cant update jquery to latest version. (But i can update to another minor version if this bug is jquery 1.4.3 related).

Do you have any idea please ?

link|improve this question

stackoverflow.com/questions/5868843/… hope this will help you – run Nov 16 '11 at 13:56
I added the constrainInput: false, but i've updated my question. see edit. ;-) – Tristan Nov 16 '11 at 13:59
1  
date picker does not allow except numbers and '/' $( ".selector" ).datepicker({ constrainInput: false }); will allow you all options – run Nov 16 '11 at 14:02
feedback

2 Answers

up vote 0 down vote accepted

I got a little extra whitespace preventing the widget to update. Removing it fixed the problem. (also, constrainInput is good to know)

link|improve this answer
feedback

http://api.jquery.com/jQuery.trim/

str: '         spaceces left & right         ';
$.trim(str);
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.