Welcome,
Guest
|
|
I\'m comparing the 2 javascript methods from the examples.
From the calendar example: Where does it get the list from? /**
Method to get Events and display it in the calendar.
If you need to make an asynchronous call, invoke ical.render in the callback method.
@param startTime - Calendar Display Range start
@para endTime - Calendar End Range end
*/
function loadCalendarEvents(startTime, endTime)
{
ajaxObj.call(\"action=getevents\", function(list){ical.render(list);});
} and in the customtemplates.html where does does the getCalendarData() function located? /**
Method to get Events and display it in the calendar.
If you need to make an asynchronous call, invoke ical.render in the callback method.
@param startTime - Calendar Display Range start
@para endTime - Calendar End Range end
*/
function loadCalendarEvents(startTime, endTime)
{
ical.render(getCalendarData());
} thanks in advance |
Please Log in to join the conversation.
phillipkuo.com
Last edit: by philltx.
|