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
Comments
Post a Comment