This topic is locked

ASPRunner Calendar template

1/29/2010 1:39:01 PM
Calendar Template general questions
D
dan_cloud author

How do I change the calendar view to start with Sunday vs Monday? Maybe I am not seeing where to adjust, but I need to have Sunday start the week for the month calendar view.

J
Jane 2/3/2010

Hi,
edit BeforeShowListevent for calmonthly and calweekly views on the Eventstab:

wd=weekday(yr & "-" & mon & "-01")

if wd=1 then wd=8

wd=wd-2
D
dan_cloud author 2/3/2010

Like this?
wd=weekday(yr & "-" & sun & "-01")

if wd=1 then wd=8

wd=wd-2
no - that didn't work, just made an error.
what should I edit this to so Sunday is first day of the week?



Hi,
edit BeforeShowListevent for calmonthly and calweekly views on the Eventstab:

wd=weekday(yr & "-" & mon & "-01")

if wd=1 then wd=8

wd=wd-2