Grid plugin with week mode alyways start at the current date

I have a problem with the scheduler grid_view plugin while in week mode. The week always starts at the current date (today). I want the grid to display the same events as the calendar witch always begins to display events on monday. I tried to set scheduler._min_date manually but it doesn’t work.

Can anybody help me with this ?

Hello,
you can set begin and end dates for a grid view:

scheduler.config.grid_start = new Date(from);
scheduler.config.grid_end = new Date(to);

Hello,

I believe what you are looking for is actually
scheduler.date[name+’_start’] = scheduler.date.week_start;
here replace “name” with the name of your grid view, e.g.
scheduler.date.grid1_start

Place this statement after creating Grid view.

Best regards,
Ilya