Default Scheduler's Form

Detailed scheduler’s form is get populated only when double clicking in month view. In all other views a lightbox only with description field is available. How can i get the detailed scheduler’s form in all views?

You can use

scheduler.config.details_on_create = true; scheduler.config.details_on_dblclick = true;

Hi Stanislav,

             On double click date for a creating new event i want to show my popup window else for event edit mode i want show default Scheduler's form. How can i do that?

Thanks in advance,
Shiju

[code]scheduler.attachEvent(“onEventLoading”,function(obj){
obj.marked = true;
});

var old_lightbox = scheduler.showLightbox;
scheduler.showLightbox = function(id){
if (scheduler.getEvent(id).marked)
old_lightbox.call(scheduler, id);
else {
scheduler.getEvent(id).marked = true;
… your custom form…
}
}
[/code]