Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
sub calendar_dayrender(obj as object, e as dayrendereventargs)
for each dateItem in eventDates
if e.day.date = dateItem then
e.cell.style("BACKGROUND-COLOR") = 'color
e.cell.style("FONT-BOLD") = true
exit for
end if
next
end sub