Hi,
I want to set the fields in the lightbox with my values. How can i implement it? Please reply asap.
Thanks in advance
Shiju
Hi,
I want to set the fields in the lightbox with my values. How can i implement it? Please reply asap.
Thanks in advance
Shiju
Do you want prefill form with default values?
You can use onEventCreated handler
scheduler.attachEvent("onEventCreated",function(id){
var event = scheduler.getEvent(id);
event.text = "some";
event.description = "some other";
...
return true;
})