repaints the scheduler
date | Date | the date to display |
view | string | the name of a view to display |
// render to apply the config
scheduler.config.hour_size_px = 88;
scheduler.render();
// switch to another date
scheduler.render(new Date(2020,7,4));
// switch to another view
scheduler.render(null, "week");
This method is an alias of scheduler.setCurrentView and works identically to it.