Documentation

onAfterMonthChange

called after month in selector is changed.

void onAfterMonthChange(date prev_date,date next_date){ ... };

Parameters

prev_datedatethe previously selected date
next_datedatethe currently selected date

Example

$$(calendar1).attachEvent("onAfterMonthChange", function(prev_date, next_date){
    //... some code here ... 
});

See also

  • articles
  • Back to top