JSON Serialize Scheduler

Hello, I am using JSON to load my calendar and want to be able to pass JSON string back to my struts controller to save events. Right now I only see a way to serialize the entire calendar to a JSON string.

Is there a way to save/update and event as it is done on the calendar? Can I output the JSON string for that individual event?

My current code :

[code] [/code]

You can try to use something like

[code]scheduler.attachEvent(“onAfterLightbox”, function(event_id,event_object){
save(event_id);
});

function save(event_id){
var str = JSON.stringify(scheduler.getEvent(event_id));
some_custom_saving(str);
}[/code]

If you target IE7 - you will need to use some lib for JSON.stringify ( check json.org )