Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Pete on Nov 14, 2009 11:01
open dhtmlx forum
Joomla Configuration

Hi,

Just installed on Joomla test site, how do I please configure the hour scale to show a working day of between 08:30 to 17:00? And how do I hide the weekends so it only shows the weekdays?


Thanks
Answer posted by Stanislav (support) on Nov 16, 2009 03:22
There is no options for it in the admin panel , but you can use all settings of scheduler directly in JS code

components\com_scheduler\models\scheduler.php 

locate the next line 
    scheduler.config.xml_date="%Y-%m-%d %H:%i";
after it you can add any custom configuration options
    scheduler.config.xml_date="%Y-%m-%d %H:%i";
    scheduler.config.first_hour = 8;
    scheduler.config.last_hour = 17;