If you configure the scheduler to only support WEEK, MONTH and AGENDA view and have more than 3 items on a single day of a month, then the Month control still renders the little "3 dots button" at the bottom. This is supposed to take the user to the DAY view, however since the day view is not enabled it does nothing. Ideally, this would not show up if day view is disabled.
Digging deeper, the lack of a day view is not the only issue...
kendo.all.js - line 57137
It appears that the "_viewNavigateHandler" is NOT bound if the view is marked as not editable. This seems to be a bug to me... I want a READ-ONLY view, but this view should certainly support intra-view navigation.
My temporary fix was to move lines 57168 to 57179 outside the if (that.options.editable) { check.
Digging deeper, the lack of a day view is not the only issue...
kendo.all.js - line 57137
It appears that the "_viewNavigateHandler" is NOT bound if the view is marked as not editable. This seems to be a bug to me... I want a READ-ONLY view, but this view should certainly support intra-view navigation.
My temporary fix was to move lines 57168 to 57179 outside the if (that.options.editable) { check.