Urgent--Need Urgent Help regarding getting event details

HI

Need Urgent Help regarding getting event details in some array or variable so that i can show it in required format some where else.

If any body know how to get the event data which is shown in agenda view then please tell me.
I need to show events of a user in some other component.

Hello,

To get array of events for certain time frame you can use getEvents function.
After that you can use each event individually and access it’s properties:

var details = ev.details;

Where
ev - event object;
details - name of the property (which was loaded from database or linked with lightbox through map_to option). There are 4 predefined options: start_date, end_date, text, id.
To get event object using it’s id you can use getEvent function.

Best regards,
Ilya