sets the user data associated with the specified event
id | string | the event's id |
name | string | the user data name |
value | any | the user data value |
var eventId = scheduler.addEvent({
start_date: "16-06-2013 09:00",
end_date: "16-06-2013 12:00",
text: "Meeting"
});
scheduler.setUserData(eventId, "holder", "John");
scheduler.setUserData(eventId, "room", 5);