There is a tabstrip being used and in the browser I can see 3 tabs 2 are active and last is not
Upgrade Product | Membership Info | Agent Notes
I want to ADD another tab, but 1. I can't get the data to display, nor understand where to find the code for how this kendo js works.
This is what I see
<div kendo-tab-strip="agent.tabstrip" k-content-urls="[ null, null, null, null, null, null, null]" k-options="agent.tabOptions" style="margin-top: 1em">
<!-- tab list -->
<ul>
<li class="k-state-active">Upgrade Product</li>
<li>Membership Info</li>
<li>Update Payment</li>
<li class="k-state-disabled" enabled="false" >Agent Notes</li>
</ul>
<div style="padding: 1em; height:800px">
<div ng-include src="'/apps/common/atb/tabs/contactinfo/contactinfo.html'"></div>
</div>
<div style="padding: 1em; height:850px">
<div ng-include src="'/apps/common/atb/tabs/memberinfo/memberinfo.html'"></div>
</div>
<div style="padding: 1em; height:800px">
My test - but Update Payment does not even display in browser :(
</div>
<div style="padding: 1em; height:450px">
<div ng-include src="'/apps/common/atb/tabs/agentnotes/agentnotes.html'"></div>
</div>
</div>
</div>
I cannot get the <li>Update Payment</li>
to show up
Where do I need to look with regards to kendo-tab-strip
and agent.tabstrip
and the k-content-urls
and then k-options="agent.tabOptions"
?
I looked through Kendo tab documentation, I'm not sure why someone made this real "fun" :/
I bet you need to put an attribute on the inner element. Try this.