Display Custom Fields In Agenda View

I’ve created two Custom fields. On is the default text field called description. The second is a drop down called “Status”. However, in all views only the default text field shows up. How can I get both fields to show up in Agenda View?

Hello,

You need to change default templates to display additional information:

scheduler.templates.agenda_text = function(event){ return event.text+" ".event.custom_field; };
Check Templates page in our documentation.

Best regards,
Ilya

Hi. I’m a newbie here and I came across this post. I want a custon field to be displayed in the table header in agenda view, along with Date & Description. Will using the code you provided do that? If so, would you be so kind as to explain where exactly to insert the code you provided?

Thanks!

Hello,

With the above code you will be able to display any additional information as event text but changing header is more tricky, you will have to edit extension source code (dhtmlxscheduler_agenda.js or ext_agenda.js for uncompressed version).

Best regards,
Ilya