No matter what I try, I\'m not able to get the beforeShow event to fire on my datepicker. Here\'s my code:
$(\'#calendar\').datepicker({
inline: true,
dateF
I found a fix for that. You must add 3 lines of code in jquery.ui.datepicker.js (the full version)
Near line #274, find thisthis._updateAlternate(inst);
Right after this line, put the following :
var beforeShow = $.datepicker._get(inst, 'beforeShow');
if(beforeShow)
beforeShow.apply();
Version from jqueryui.com does not have beforeShow enabled for inline datepicker. With this code, beforeShow is enabled.