Open calendar with Today's Date

Hello

I have 2 questions.

1: How is it possible to open the calendar with today’s date?
I tried

scheduler.init('scheduler_here',new Date(getFullYear(),getMonth()+1,getDate()),"unit");

but it doesn’t work :frowning:

2: Where can i change the date_format in the header which is seen right to the mini-calendar? Now it’s “30 Oct 2011” … i also would like to see the day of the week (Sunday) … I’m sorry for this question but i can’t find where i can change that :frowning:

(1)
The next must be enough
scheduler.init(‘scheduler_here’,new Date(),“unit”);

(2)
docs.dhtmlx.com/doku.php?id=dhtm … ngs_config
docs.dhtmlx.com/doku.php?id=dhtm … ngs_format

scheduler.config.default_date = “%j %M %Y”;

A dream … thank you :slight_smile: