Joomla - Show additional field in week view

Hi there

I was wondering in which file under com_scheduler and which code I need to enter if I want to show the info from an additional database field in the week view.

Actually it only shows now the title of the appointment but we need (one line underneath) the information from the field called Firma.

Any help would be appreaciated!

Kind regards,
Dave

OK I was a bit too early - I solved it by myself :slight_smile:

For all the others: You can copy the following code to com_scheduler\scheduler_include.html:

<script> scheduler.templates.event_text=function(start,end,event){ return "Anlass:<b> "+event.text+"</b>"+", "+event.firma; } </script>

(where firma is the name of my field).

Good work :slight_smile: