TNT23 Posted September 8, 2014 Posted September 8, 2014 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? 1
Sherzod Posted September 8, 2014 Posted September 8, 2014 Hi, While, try.. UniCalendarPanel1 -> ClientEvents -> ExtEvents -> add function afterrender: function afterrender(sender, eOpts) { // sunday = 0, monday = 1, ... sender.getActiveView().startDay = 1; } Best regards.
TNT23 Posted September 8, 2014 Author Posted September 8, 2014 Thank you very much it is working great
TNT23 Posted September 10, 2014 Author Posted September 10, 2014 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?
zilav Posted September 10, 2014 Posted September 10, 2014 Open AbstractCalendar.js and set startDay to 1
Recommended Posts