I'm using a Kendo TabStrip in my project, and am using an MVC view as the content of a panel, by setting the contentURL for the tab.
This is all working great, although I am having an issue, by trying to set the select function from my MVC view.
Within my view I have tried:
$('#edit').kendoTabStrip().select = function(e){alert('tab has been changed');}
And a couple of other ways, however, when I try to set this select method from my view, it doesn't allow me to.
I think what you need is to define the select event in your tabstrip configuration, as explained here and here.
Example:
Define the select event function
Javascript
Kendo MVC