I have a weekly view just displaying the days without the date. I would like to just add time period events with having to type a description. How do I remove the description text area in the lightbox or hide it with a default value?
Hello,
You need to specify the lightbox object
docs.dhtmlx.com/scheduler/api__s … onfig.html
Please, check the demo:
docs.dhtmlx.com/scheduler/snippet/bf9a5e40
Thank you for the demo guide. Can I remove the description text area of the mini lightbox in the time period blocks?
Could you please add a screenshot to show where else do you need remove description?
Hello,
Specify event text for new event in onEventCreated handler:
scheduler.attachEvent("onEventCreated", function(id,e){
var ev = scheduler.getEvent(id);
ev.text = "";
return true;
});
docs.dhtmlx.com/scheduler/snippet/319dcc1f
or change default text in the locale object
scheduler.locale.labels.new_event = "";
docs.dhtmlx.com/scheduler/api__ … other.html
I don’t know wnat you try to implement, but possibly these links will be useful for you:
docs.dhtmlx.com/scheduler/readonly.html
docs.dhtmlx.com/scheduler/api__ … onfig.html
Thank you)