I need to make a few simple changes to the Datepicker HTML generated by the jQuery UI Datepicker e.g. adding some brief text after the calendar table.

I have been trying to do this using the beforeShow event, but while I can access the current HTML using this, manipulating it does not work:

beforeShow: function(input, inst) {
//#this works
alert($('#ui-datepicker-div').html());
//#this does nothing
$('#ui-datepicker-div').append('message');          
}

I think this might be because the Datepicker HTML elements are added to the Dom later and therefore the live method is needed to update the HTML, but I do not know how to hook up the live method with this function callback. Or I could well be approaching this in the wrong way altogether.

I would really appreciate if someone could help me out with this as I have searched and tried a lot of things but I can't seem to get this working. Thanks.

link|improve this question
If all you're doing is adding elements to the bottom of the datepicker, why not just add those elements directly in the HTML? – Andrew Whitaker Jul 11 '11 at 23:35
Was wondering the same thing myself with a clear head this morning! :) I was hoping to avoid editing the core code if possible so that any future maintenance would be easier. I'd assumed that it would be fairly easy to manipulate the HTML from a callback and that I was just using the wrong line of code. – fizzy Jul 12 '11 at 8:23
I want to do exactly the same thing, except I need to use wrapInner(), which again has no affect. Funny as removeClass() and addClass() seem to work fine. I want to do this only if and when the datepicker opens... – Sniffer Aug 5 '11 at 10:36
feedback

1 Answer

up vote 1 down vote accepted

It seems like you need to wait till the .ui-datepicker-calendar table to be inserted into the #ui-datepicker-div to append your message. You could do a timer to check for that:

$('#datepicker').datepicker({
    beforeShow: function(input, inst) {
        //#this works
        //alert($('#ui-datepicker-div').html());
        //#this does nothing
        insertMessage();
    }
});

function insertMessage(message) {
    clearTimeout(insertMessage.timer);

    if ($('#ui-datepicker-div .ui-datepicker-calendar').is(':visible'))
        $('#ui-datepicker-div').append('<div>foo</div>');
    else
        insertMessage.timer = setTimeout(insertMessage, 10);
}

See it in action: http://jsfiddle.net/william/M9Z7T/2/.

link|improve this answer
Brilliant William - thanks for going to the trouble of setting up an example – fizzy Sep 6 '11 at 12:08
feedback

Your Answer

 
or
required, but never shown

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