problem on month view

Hi!
I have a problem with month view (tested in samples of scheduler).
I have some blockTime per day, e.g.:

scheduler.config.first_hour = 2;
scheduler.config.last_hour = 20;
scheduler.blockTime(6, [0,8*60,18*60,22*60]);

When I click on saturday in month view nothing happens.
Is there some way to create a new event for this day?

I don’t know if it is the best way to fix it, but this is my solution:

scheduler.attachEvent('onEventCreated',function(id) {
  if (scheduler.getState().mode == "month") {
    var ev = scheduler.getEvent(id);
    var today = new Date();
    ev.start_date.setHours(today.getHours());
  }
  return false;
});