Hello,
I’ve read this post about double click, but I still have the problem
viewtopic.php?f=25&t=29343&p=93376&hilit=double+click#p93376
I’m trying next code. But when I double click, event doesn’t fire and also events open and create (when double click in blank)
Server Side (I’ve checked it in client side too)
sched.Config.details_on_dblclick = false;
sched.Config.dblclick_create = false;
Cliente Side:
scheduler.attachEvent(“onDblClick”, function () {
alert(“double click”);
return true;
});
Thanks