Documentation

onTodaySet

fires on clicking the Today button

void onTodaySet(object date){ ... };

Parameters

dateobjectthe calendar object date

Example

$$('calendar').attachEvent("onTodaySet", function(date){
    //some code here 
});

Back to top