Inside ContentURL of the tab i.e. "occupancy.html", it did not show {{message}} of controller.
<div id="fundingTab" data-ng-controller="fundingController">
{{message}} <== show in here, but not inside occupancy.html (i.e. inside tab)
<ul>
<li class="k-state-active">Occupancy</li> <== click & travel to occupany.html but not show {{message}}
<li>Revenue</li>
</ul>
</div>
$(document).ready(function () {
var ts = $("#fundingTab").kendoTabStrip({
animation: { open: { effects: "fadeIn" } },
contentUrls: [
'clientApp/views/funding/occupancy.html',
'clientApp/views/funding/revenue.html'
]
}).data('kendoTabStrip');
ts.tabGroup.on('click', 'li', function (e) {
ts.reload($(this));
});
});