Jump to content

Recommended Posts

Posted

Thank you very much for the amasing components. Is there a way to change the start day of the calendar panel so that it will start from monday?

  • Upvote 1
Posted

Hi,

 

While, try..

 

UniCalendarPanel1 -> ClientEvents -> ExtEvents -> add function afterrender:

function afterrender(sender, eOpts)
{
  // sunday = 0, monday = 1, ...
  sender.getActiveView().startDay = 1;
}

Best regards.

Posted

Another problem is that the code is working great at Month view but in Week view StartDay does not affect the final result. (Sunday is still first). Is there a work arround for this?

×
×
  • Create New...