scheduler.showLightbox


You can try the following:


scheduler.attachEvent(“onClick”,function(id,e){


scheduler._on_dbl_click(e);
return false;
})


Try to use


scheduler.config.details_on_dblclick=true;


instead of


scheduler.config.details_on_dblclick=false;


You can set details_on_create. So details form will appear right after event is created.


There isn’t public method to do that. Try to use the following:


dhtmlxEvent(scheduler._els[“dhx_cal_data”][0],“click”,function(e){
if (!scheduler._locate_event(e?e.target:event.srcElement))
scheduler._on_dbl_click(e);
})