I'm using jQuery's Date Picker for one of my form's field - Date of Birth.

The field is generated using PHP and will be populated with the user's original date of birth. Clicking the field brings up the widget, which it does perfectly fine.

However, the textbox doesn't show the original value, even though it appears in the browser's source code. I'm using Google Chrome.

The following is the jQuery code:

$(function()
{
    $("#DatePicker").attr("readonly","readonly");

    $("#DatePicker").datepicker({
        changeMonth: true,
        changeYear: true,
        yearRange: "1950:+10"
    });

    $("#DatePicker").datepicker("option","dateFormat","dd MM yy");
});

This is the PHP code:

echo "<INPUT TYPE=\"TEXT\" NAME=\"$FieldName\" VALUE=\"$OriginalData\" ID=\"DatePicker\" CLASS=\"FullLength\">";

And the following is the HTML code (copied from the source code):

<INPUT TYPE="TEXT" NAME="DateOfBirth" VALUE="18 August 2012" ID="DatePicker" CLASS="FullLength">

Please tell me what's wrong. Thank you.

link|improve this question
Tried it just now with the ordinary jQuery date picker and can't reproduce. Most likely some other code you have (either server side or client side) is overwriting the value and clearing it. – Shadow Wizard Nov 20 '11 at 9:18
@ShadowWizard: Check this demo VS this one. It clears the field and seems like it makes another datepicker. I'm probably missing something (only quickly checked the docs), but I really would have expected OP's code to work. Chime in if you know something, I'm interested. – Wesley Murch Nov 20 '11 at 9:24
@Madmartigan good catch, didn't notice the double datepicker usage - sounds like bug in their code, not expecting to be called more than once. All options must be given in one single call, no harm in that. – Shadow Wizard Nov 20 '11 at 9:29
feedback

2 Answers

up vote 2 down vote accepted

I'm not sure why, but this line is clearing the value:

$("#DatePicker").datepicker("option","dateFormat","dd MM yy");

Try adding the option like this if possible, worked for me in Firefox and Chrome:

$("#DatePicker").datepicker({
    changeMonth: true,
    changeYear: true,
    dateFormat: "dd MM yy"
});
link|improve this answer
Oh that worked. Thank you very much!!! =) – TianHua Ong Nov 20 '11 at 13:48
feedback

Try using another browser like firefox to check if its a browser compatibility issue, not sure about php but on asp.net their is an option to set the textbox text visibility to true

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.