This topic is locked

Calendar Control

6/3/2009 2:53:51 PM
PHPRunner General questions
K
KennyB author

I like the functionality of the calendar control however their are many times that having the days of week start with Sunday through Saturday instead of Mon - Sunday since almost all calendars here in the U.S. are like that. So any wany to get more flexability out of the template?

K
KennyB author 6/4/2009

I like the functionality of the calendar control however their are many times that having the days of week start with Sunday through Saturday instead of Mon - Sunday since almost all calendars here in the U.S. are like that. So any wany to get more flexability out of the template?


received the following reply from support.
to set up Sunday as first day in the Calendar edit "List page: Before display" event on the Events tab for monthly view.

You need to repalce all weekday names in the following code:

------------------------------------------------

$ndays[1]=$locale_info["LOCALE_SDAYNAME1"];

$ndays[2]=$locale_info["LOCALE_SDAYNAME2"];

$ndays[3]=$locale_info["LOCALE_SDAYNAME3"];

$ndays[4]=$locale_info["LOCALE_SDAYNAME4"];

$ndays[5]=$locale_info["LOCALE_SDAYNAME5"];

$ndays[6]=$locale_info["LOCALE_SDAYNAME6"];

$ndays[7]=$locale_info["LOCALE_SDAYNAME7"];

------------------------------------------------

and remove this line:

------------------------------------------------

$wd=$wd-1;

------------------------------------------------
Then change background color for the first and sixth columns on the Visual Editor tab manually.[/color]