Page 1 of 1

Showing Start and End Time in Event

PostPosted: Wed Nov 30, 2016 7:14 pm
by puddicom
Hello!

I would like to be able to see the start and end time in the events on the calendar, but I am currently only showing the start time. I see in some of the Dayback screenshots this is possible (like the image on the main Dayback page), but I could not figure out where to add this; is it in the CSS or a script somewhere?

Thanks!
Nick

Re: Showing Start and End Time in Event

PostPosted: Thu Dec 01, 2016 12:26 pm
by kcembrey
Hi Nick,

One idea would be to hide the time that appears on the events by default by adding the following to your CSS file:
Code: Select all
.fc-event-time {
display: none;
}

You can find more information on editing DayBack CSS here: http://www.seedcode.com/pmwiki/index.php?n=DayBackForFileMaker.CSS

Once you've done that, you can add both the start time and end time fields into your DBk_EventSummaryCalc field so that they always show up in the summary. The only issue with this is that there is no way to make items show up in bold in the event summary.

Let us know if that works.

KC