Hi.
We’re loading multiple data sources into our calendar. Two of them come from iCal feeds. We want to manipulate the data before it’s displayed on the calendar (change the color, add a resource). Typically we’d use onXLE to loop through the data to make the changes. However with multiple data sources, there doesn’t appear to be a way to identify which feed is being loaded when onXLE is triggered.
In other words, I’d like to do something like this:
scheduler.attachEvent("onXLE", function (data){
if ((data.url)=='this') {
//loop records to change data
}
});
However, it doesn’t appear that any data is passed with the onXLE event.
Can you tell me if this is possible, or if there is another method to accomplish this?
Thank you.