how to add a url to an event in the scheduler

Hi,
I have a scheduler with the events are loaded through an XML that looks like this:

<data> <event EmployeeId="9903597" Person="Sven Orly" textColor="White" color="LimeGreen" end_date="2015-12-24 11:59:00" start_date="2015-12-21 00:00:00" text="vacation"/> <event EmployeeId="9903597" Person="Sven Orly" textColor="White" color="LimeGreen" end_date="2015-12-28 11:59:00" start_date="2015-12-25 00:00:00" text="mission"/> </data>

I have my green boxes in my scheduler calendar. Now I want to be able to click on a event in the scheduler that opens a new url. How can I add this into the XML file that is loaded with the different events ?

Hi,
try using templates for that
docs.dhtmlx.com/scheduler/custom … eventstext

I figured another solution:

scheduler.attachEvent("onClick", function (id, event){ //add the link here }