Hello,
I have a scheduler instantiated inside a bootstrap column, nested inside a kendo tabstrip container. Everything looks good, except that only today's view does not show any lines for the day. Also, when I switch to the week view, every day but today is showing up with the correct tr borders.
I tried using the refresh code, including adding a delay to refresh after the tab is activated; but no luck. Here is my code:
The first Screenshot is today's date, and the second is tomorrow. Any help would be greatly appreciated.
Regards,
Matt
I have a scheduler instantiated inside a bootstrap column, nested inside a kendo tabstrip container. Everything looks good, except that only today's view does not show any lines for the day. Also, when I switch to the week view, every day but today is showing up with the correct tr borders.
I tried using the refresh code, including adding a delay to refresh after the tab is activated; but no luck. Here is my code:
var loadAppointments = function(){ $("#schedule-appointments-scheduler").kendoScheduler();}var loadContent = function(){ var vm = ViewModelManager.getViewModel(); loadAppointments(); $("#schedule-main-content-container").kendoTabStrip({ animation: { open: { effects: "fadeIn" }},activate: function(e){ var scheduler = $("#schedule-appointments-scheduler").data("kendoScheduler"); _.delay(function() { //scheduler.view(scheduler.view().name); scheduler.refresh(); }, 200); }});}The first Screenshot is today's date, and the second is tomorrow. Any help would be greatly appreciated.
Regards,
Matt
