Configuration Time

Hello,

I wonder how can I remove the second part of the field team, would like to stay on schedule display only the first option visible schedules.

Attached explanatory picture.

Thank you very much

Hello,
currently the only way to hide these controls is to manually do it with js code before showing the lightbox scheduler.attachEvent("onBeforeLightbox", function(){ var node = scheduler.formSection("time").node; var timeInputs = node.getElementsByTagName("select"); for(var i = 4, len = timeInputs.length; i < len; i++){ timeInputs[i].style.display = 'none';//remove inputs } if(timeInputs[4] && timeInputs[4].previousSibling){ timeInputs[4].previousSibling.style.display = 'none';//remove dash } return true; });
docs.dhtmlx.com/scheduler/api__s … ction.html
docs.dhtmlx.com/scheduler/api__s … event.html

Thanks, worked perfectly. :slight_smile: