My TabStrip is as follows:\[code\] @(Html.Kendo().TabStrip() .Name("tabApplications") .Items(items => { items.Add().Text("Online").Selected(true); items.Add().Text("Trading"); }) .Animation(false) .Events(e=>e.Select("tabstrip_select")) )\[/code\]In Javascript I get theSelected Item:\[code\] function tabstrip_select(e) { var x = e.item; }\[/code\]Question: How do I get the Selected Index (ie "1") from this function. I looked over the Item object but didn't see anything obvious.