up vote 11 down vote favorite
3
share [g+] share [fb]

How do I use the JQuery Datepicker with a textbox input:

$("#my_txtbox").datepicker({
  // options
});

that doesn't allow the user to input random text in the textbox. I want the Datepicker to pop up when the textbox gains focus or the user clicks on it, but I want the textbox to ignore any user input using the keyboard (copy & paste, or any other). I want to filll the textbox exclusively from the Datepicker calendar.

Is this possible?

JQuery 1.2.6
Datepicker 1.5.2

link|improve this question

feedback

8 Answers

up vote 26 down vote accepted

You should be able to use the readonly attribute on the text input, and jQuery will still be able to edit its contents.

<input type='text' id='foo' readonly='true'>
link|improve this answer
It worked! Thanks! However I had to use readonly="true" in the <input> element. – Elliot Vargas Sep 30 '08 at 16:22
2  
For People that have Javascript disabled I would leave the input field alone in the HTML and have the bit of jQuery place the readonly attribute on the page load $(document).ready(function () { $("#my_txtbox").attr 'readOnly' , 'true' ); }); That way users with JS turned off can still pick a date – Csharper Mar 29 '11 at 11:49
feedback
<input type="text" readonly="true" />

causes the textbox to lose its value after postback.

You rather should use Brad8118's suggestion which is working perfectly.

$("#my_txtbox").keypress(function(event) {event.preventDefault();});

EDIT: to get it working for IE use 'keydown' instead of 'keypress'

link|improve this answer
feedback

based on my experience I would recommend the code (mentioned above)

$("#my_txtbox").attr( 'readOnly' , 'true' );

Because the following code

$("#my_txtbox").keypress(function(event) {event.preventDefault();});

won't let the user edit but let them delete.

And this

<input type="text" readonly="true" />

will turn the form useless when they have the javascript off.

link|improve this answer
feedback

To datepicker to popup on gain focus:

$(".selector").datepicker({ showOn: 'both' })

If you don't want user input, add this to the input field

<input type="text" name="date" readonly="readonly" />
link|improve this answer
feedback

try

$("#my_txtbox").keypress(function(event) {event.preventDefault();});
link|improve this answer
I've used this with asp.net with success as it didn't play nice when setting the <asp:textbox> readonly attribute to "true" – Russ Cam Dec 1 '08 at 18:05
This does not prevent someone from pasting a value into the textbox for future reference. – Erik Philips Sep 21 '10 at 4:26
feedback

This demo sort of does that by putting the calendar over the text field so you can't type in it. You can also set the input field to read only in the HTML to be sure.

<input type="text" readonly="true" />
link|improve this answer
feedback

I've found that the jQuery Calendar plugin, for me at least, in general just works better for selecting dates.

link|improve this answer
feedback

If you are reusing the date-picker at multiple places then it would be apt to modify the textbox also via JavaScript by using something like:

$("#my_txtbox").attr( 'readOnly' , 'true' );

right after/before the place where you initialize your datepicker.

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.