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

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -