Fullcalendarevents and SharePoint-listwebservice

Fullcalendarevents and SharePoint-listwebservice

Hello,

I've already got back the XML-response from the listwebservice but
how can I create calendarevents using the variables of the XML-response.

I'm using jQueryPlugin FullCalendar Version 1.3.2

The SP-list looks like that:
Image

-title should also be the title-object of the event
-date is the start-object (not formatted yet)
-Allday is the allDay eventobject
-Creator should be shown when the user hovering an event

Thats the way I normally add an event manually

events:[
  {
     id: 1,
     title: "Event1",
     start: "2009-10-12T16:00:00Z",
     allDay: true
  }
]


Comment of the Author was :
you need to parse the XML with your own custom javascript. it needs to create an array
of 'CalEvent' objects ( http://arshaw.com/fullcalendar/docs/events-and-
sources.php#calevent)

then return this array in a function that you provide for the 'events' option
( http://arshaw.com/fullcalendar/docs/eve ... ources.php )

i cant provide any more support beyond this. i promise the website will have better
examples in the future. also, i cannot provide any help specific to SharePoint, because
i have never dealt with that system.

good luck.


But I still dont really know how to make it.
Did anyone work with SharePoint-Webservice and jQuery?

I would be very happy about an answer.
Thanks!

Best regards

Chris