How to change start day of calendar on a grid?

Hello.

I’m using the calendar cell type on a grid.

I would like to change the start day, monday to sunday.

Dhtmlx gives a function to change the start day of calendar on a form
but I don’t think the gird doesn’t support it.

Is there any idea?

Please, try to use the following code:

mygrid.attachEvent("onCalendarShow", function(myCal,rId,colInd){ myCal.setWeekStartDay(7); });

Thank you so much :smiley:

Your code work perfectly!