Page 1 of 1

How to Disable creating a record from within the Cal

PostPosted: Thu Mar 03, 2016 12:46 pm
by martinc
We have a process that sets various fields for tasks that we are calendarizing. Is there a way to turn off the feature that lets a user double click in a date to create a new event?

Thanks

Re: How to Disable creating a record from within the Cal

PostPosted: Thu Mar 03, 2016 4:12 pm
by DanW
Hi Martin,

Absolutely. You can altogether hide that New Event popover on the calendar by adding the rule below to your CSS theme. For more info on modifying CSS themes, check out this link: http://www.seedcode.com/pmwiki/index.ph ... eMaker.CSS

.fc-event-time { display: none; }

Or, you can hide just the New Event button on this popover (so that the View Day button is still available) by using this rule.

.dbk_newEvent .btn-success { display: none !important; }

Let me know if this works for you!

All the best,