Hi Dimass,
I’ve sent you an updated build of scheduler, it should fix the issue with ‘isValid()’ error and disabling wai-aria attributes, please check PM
As for disabling timeslot highlight. If i understand correctly you want key_nav extension to work exactly as it was in a previous version of scheduler.
In order to do so, you can hide highlighted time slots, remove new keyboard handlers for arrow keys and restore the old ones.
Please check this code
css, hide time marker and hide focus outline from data-area element:
[code].dhx_focus_slot{
display:none;
}
.dhx_cal_data{
outline:0;
}[/code]
navigate dates using right/left arrow keys, without disable timeslot navigation:
[code]scheduler.removeShortcut(“left,right,up,down”, “event”);
scheduler.removeShortcut(“left,right,up,down”, “timeSlot”);
scheduler.removeShortcut(“left,right,up,down”, “dataArea”);
scheduler.addShortcut(“right”, function(){
var current = scheduler.getState();
scheduler.setCurrentView(scheduler.date.add(current.date, 1, current.mode));
});
scheduler.addShortcut(“left”, function(){
var current = scheduler.getState();
scheduler.setCurrentView(scheduler.date.add(current.date, -1, current.mode));
});[/code]