Hello everybody,
I want to display calendar but without click action ? Can you tell me if possible ?
My script :
Thanks
Hello everybody,
I want to display calendar but without click action ? Can you tell me if possible ?
My script :
Thanks
Hi, place these lines:
//block all modifications
scheduler.attachEvent("onBeforeDrag", function () { return false; })
scheduler.attachEvent("onClick", function () { return false; })
scheduler.config.details_on_dblclick = false;
scheduler.config.dblclick_create = false;
before your scheduler.init line.
Hope this helps.