In the scheduler you are allowed to configure formats, using in scheduler's dates, and elements' sizes.
To set the desired option, just write it as it's stated in this documentation. Beware, configuration options should go before the code line with scheduler initialization.
scheduler.config.init_date = new Date(2011,5,1);
scheduler.config.day_date = "%d/%m/%Y";
//configuration options should go before scheduler's constructor
dhx.ui({
view: "scheduler",
id: "scheduler"
});
$$("scheduler").load("../scheduler/mobile.xml","scheduler");
Related sample: samples/07_mobile/02_date_format.html
scheduler.config.init_date - (date object) the initial date of the scheduler (by default, the current date)
scheduler.config.form_date - (string) the format for dates of the fields 'start', 'end' in the 'Details form' (by default, ”%d-%m-%Y %H:%i”)
scheduler.config.xml_date - (string) the format for dates in data files to be recognized by the parser(by default, ”%Y-%m-%d %H:%i”)
scheduler.config.item_date - (string) the format for the date in the 'list' view (by default, ”%d.%m.%Y”)
scheduler.config.header_date - (string) the format for the date in the 'day' view (by default, ”%d.%m.%Y”)
scheduler.config.hour_date - (string) the format for time in the 'list' view (by default, ”%h:%i”)
scheduler.config.scale_hour - (”%H” or ”%h”) the format for hours in the 'day' view (by default, ”%H”)
scheduler.config.calendar_date - (string) the date format for the header in the 'month' view (by default, ”%F %Y”)
Format string can contain any separator character and any element from the following list:
%d - day as number ( with leading zero );
%j - day as number;
%D - abbreviated name of the day;
%l - full name of the day;
%m - month as number ( with leading zero );
%n - month as number;
%M - abbreviated name of the month;
%F - full name of the month;
%h - hours (12);
%H - hours (24);
%i - minutes;
%s - seconds;
%a - am or pm;
%A - AM or PM.
For example, if you want to present 1st June 2011 as 01/06/2011, you should specify ”%d/%m/%Y”.