Hello, I have my tabstrip configured to pull dynamic content for each tab using the contentURLs property like so:
<!-- TABSTRIP --><div id="tabstrip-revenue-by-product"> <ul> <li class="k-state-active"> Revenue by HCPC </li> <li> Versus Prior Month </li> <li> YTD </li> <li> Normalized Revenue </li> </ul> <!-- Revenue by HCPC --> <div class="revenue-by-hcpc"> </div> <!-- Versus Prior Month --> <div class="versus-prior-month"> </div> <!-- YTD --> <div class="ytd"> </div> <!-- Normalized Revenue --> <div class="normalized-revenue"> </div></div> <!-- End Tabstrip --><script>$(document).ready(function () { $("#tabstrip-revenue-by-product").kendoTabStrip({ animation: { open: { effects: "fadeIn" } }, contentUrls: [ "Views/Reports/Widgets/revenue-by-hcpc.aspx", "Views/Reports/Widgets/versus-prior-month.aspx", "Views/Reports/Widgets/ytd.aspx", "Views/Reports/Widgets/normalized-revenue.aspx" ] });});</script>But the contentURLs never fire. I use Firebug to track any AJAX calls, but none are being made. It's not like I have a bad path to the file, because I don't even see the request.
