I want my jQuery datepicker (jQuery UI 1.8.13) to generate a report only when I click the 'Done' button.

enter image description here

The onClose event is not good because that is triggered also when I click somewhere else (not in the datepicker) and I need to generate the report only when the 'Done' button is pressed. Therefore I need to add an onclick callback to the 'Done' button. However I can not find a jQuery selector that will match the 'Done' button. I have tried the $('.ui-corner-all') but that will also find other elements too. So, I have tried $('.ui-priority-primary') (because AFAIK this is the only element that has this style), but it does not match the button ...

  1. I need a selector that will only match that 'Done' button.
  2. Why is $('.ui-priority-primary') not working?

Please find the sample code here.

UPDATE I use a this datepicker as a monthpicker, so I do not have dates to click on. Therefore it is important that I need to put the callback on the 'Done' button as I have stated above.

link|improve this question

I'm using Chrome and it doesn't work for me as is. If you click on anything it gives the alert. – Rondel Jan 5 at 16:43
Have you tried the solution I provided? It is the best way to make this work. – mrtsherman Jan 6 at 2:35
@mrtsherman: Yes, I have tried it and it works. Thanks for the solution and the explanation. – Atticus Jan 6 at 7:21
feedback

2 Answers

up vote 3 down vote accepted

As far as it not working, this is because the control is created after your binding takes place. If you use delegate then it will work. Although I think Darin's answer is probably a better solution, I am providing this as it directly answers the 'why' of your question.

http://jsfiddle.net/7ThB8/30/

$('body').delegate('.ui-priority-primary', 'click', function() {
    alert('done was clicked');
});
link|improve this answer
feedback

How about using the onSelect event which is triggered when a date is selected:

$('.date').datepicker({
    onSelect: function(dateText, inst) { 
        ...
    }
});
link|improve this answer
The onSelect is not a good solution in my case because I need the action to be triggered when I click on the 'Done' button. Actually I use monthpicker which does not have the dates displayed. – Atticus Jan 5 at 16:58
feedback

Your Answer

 
or
required, but never shown

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