Hi.
How to remove month view event time?
I want see event text only.
Except the time to let me know how to see.
It’s possible?
Hi.
How to remove month view event time?
I want see event text only.
Except the time to let me know how to see.
It’s possible?
Hi,
you can override event_bar_date template
docs.dhtmlx.com/scheduler/api__s … plate.html
Add this code before scheduler initialization:
scheduler.attachEvent("onTemplatesReady", function(){
scheduler.templates.event_bar_date = function(start,end,ev){
return "";
};
});
Thank you Aliaksandr!
Exactly, I wanted.