Print pdf in colour of events

Hi,

I have created a custom field to identify different venues in my building. As such I now have a “Select List” type in my create new event section. These have all been identified by different colours. Is it possible to tell me if it is possible to export these to pdf in their colours and if it is possible could you tell me how to go about this.

Many thanks

Hi,
you may add in scheduler_include.html file the follow code:

<script>
scheduler.config.export_.pdf_mode = "fullcolor";
</script>

Thank you,

How long should this take before it takes effect as so far this has not worked.

Hi,
it should be applied at the same time as you did changes.
Could you provide a link to your scheduler page?

My scheduler is on this page: elburtonchurch.com/index.php … ,mode=week. Let me know of anything more that I can do.

Many thanks.

Hi,
try to modify your code like here:

<script>
scheduler.attachEvent("onXLE", function () {
    scheduler.config.export_.pdf_mode = "fullcolor";
});
</script>

That’s worked a treat. Many thanks.