Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to disable some day in jquery datepicker calendar, so in the function beforeShowDay I write this:

beforeShowDay: function(date){
            if(parseInt(calMonth) != parseInt(date.getMonth())){
                calMonth = date.getMonth();
                alert(calMonth + ' - ' + date.getMonth());
            }
            return {0: true};
        }

where calMonth contains the current month number. Now if I run this, I get 3 alert that show in order: 9-9, than 10-10 and than 11-11. Why I have 3 message, while it shouldn't show me anything (because when I open datepicker it shows by default the calendar of current month, so if(parseInt(calMonth) != parseInt(date.getMonth())) should return false. I also set numberOfMonths: 1.

share|improve this question
Do you enable the showOtherMonths option? That will show a few days from other months. Also, your function changes calMonth, so it's not always the current month. – Barmar Nov 8 '12 at 10:12
I set showOtherMonths to false, but I still get 3 alerts. Yes I change calMonth, because I need to do an ajax call only one time when month is changed, so if I don't set calMonth to the current month that calendar shows, it would do 31 ajax call. – pindol Nov 8 '12 at 10:19
Now i saw that there is a option called onChangeMonthYear, maybe this one is the right one to use in this case. Thanks anyway ;) – pindol Nov 8 '12 at 10:20

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.