Post from Neli on Teleriks Support to wort out problem with MBC wrappers.
If you prefer to use the MVC wrappers, then you could subscribe to the activate event of the TabStrip.
@(Html.Kendo().TabStrip()
.Name(
"tabstrip"
)
.Events(e=>e.Activate(
"onActivate"
))
The Scheduler widget will be already initialized and you could get a reference to it. Using the viewName method, you could check the name of the current view of the Scheduler. Then, the view could be explicitly set to the widget, by using the view method. This approach will refresh the view.
function
onActivate(e){
var
scheduler = $(
"#scheduler"
).data(
"kendoScheduler"
);
var
view = scheduler.viewName();
scheduler.view(view);
}
I hope you will find the enclosed Dojo example helpful.
I have copied this reply in the Forum thread concerning the same topic. I would suggest to keep the conversation in just one thread. This way we will avoid thread duplication.