dhtmlxCalendar is possible that only time and not the months and days appear. This is to ask for a time range??
Do you mean to disable click reaction for yearPicker, monthPicker, datePicker and minutePicker?
Do you mean to disable click reaction for yearPicker, monthPicker, datePicker and minutePicker?
Yes , the click reaction in the hour or minute and the year, mont and date not appears
You can try to add the next code to calendar:
myCalendar._showSelector2 = myCalendar._showSelector;
myCalendar._showSelector = function(t){
if (t == "month") return;
this._showSelector2.apply(this,arguments);
};
Also you can hide left arrow
myCalendar.contMonth.firstChild.firstChild.childNodes[0].style.display = "none";
and right arrow
myCalendar.contMonth.firstChild.firstChild.childNodes[3].style.display = "none";
But anyway if you will click on gray date of prev/next month - dates will be scrolled