<div id="tabstrip">
<ul>
<li>Table</li>
<li>Chart</li>
</ul>
<div style="min-height:350px;"> </div>
<div style="min-height:350px;"> </div>
</div>
How can I access the selected index or name? (tabstrip-1', tabstrip-2')
I use the select event:
$("#tabstrip").kendoTabStrip({
select: function(element){alert(element);}
});
And it works, alert pops up. But I cant use element.type or element.name or whatever on this element? So I dont
know which type is this element ...
I need the name (Chart,Table) or the index?
How to catch this?
Thank you
Marcus
<ul>
<li>Table</li>
<li>Chart</li>
</ul>
<div style="min-height:350px;"> </div>
<div style="min-height:350px;"> </div>
</div>
How can I access the selected index or name? (tabstrip-1', tabstrip-2')
I use the select event:
$("#tabstrip").kendoTabStrip({
select: function(element){alert(element);}
});
And it works, alert pops up. But I cant use element.type or element.name or whatever on this element? So I dont
know which type is this element ...
I need the name (Chart,Table) or the index?
How to catch this?
Thank you
Marcus