vote up 1 vote down star

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

flag

7 Answers

vote up 5 vote down check

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='readonly'>
link|flag
It worked! Thanks! However I had to use readonly="true" in the <input> element. – Elliot Vargas Sep 30 '08 at 16:22
vote up 1 vote down
<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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 1 vote down

try

$("#my_txtbox").keypress(function(event) {event.preventDefault();});
link|flag
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
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.