javascript - Enter text in Datepicker textfield -


i'm using jqueryui add datepicker textfield. works fine, because of i'm not able type text textfield. can add date through datepicker.

but want users able enter things now in textfield. entering manual text blocked can see in example fiddle: http://jsfiddle.net/kugzd/

is there anyway change behavior?

just add constraininput: false datepicker option

$(function() {     $('.date').datepicker({         constraininput: false     }); }); 

check documentation

demo: http://jsfiddle.net/kugzd/2/


Comments

Popular posts from this blog

ios - iPhone/iPad different view orientations in different views , and apple approval process -

java Extracting Zip file -

php - HTTP_REFERER woes: How can I allow access to a specific page, only when a visitor has visited another specific page beforehand? -