I am using the kendo TabStrip in my sample. I have added the tabs following through documentation. And found events sample at http://demos.kendoui.com/web/tabstrip/events.html
I have tried the same sample in fiddle http://jsfiddle.net/ZrFGX/5/.
My code is looks like this,
function onContentLoad(e) {
alert("content loaded!");
}
$("#tabStrip").kendoTabStrip({
contentLoad: onContentLoad
});
onContentLoad is not even called single time.