This question is locked. New answers and comments are not allowed.
Hello,Telerik Team
I have a PanelBar as follows :
when I select the "X" link at the second item , the "X" link at the first item is selected
i want the pressed "X" to be the selected one , any solution ?
I have a PanelBar as follows :
@(Html.Telerik().PanelBar().Name("PanelToolbar").ExpandMode(PanelBarExpandMode.Single).HtmlAttributes(new { style = "width: 200px; align:center; color:red;" }).SelectedIndex(0).Items(item =>{ item.Add().Items( subitems => { subitems.Add().Action("Index", "X"); subitems.Add().Action("Index", "Y"); }); item.Add().Items( subitems => { subitems.Add().Action("Index", "X"); subitems.Add().Action("Index", "Z"); } );}))when I select the "X" link at the second item , the "X" link at the first item is selected
i want the pressed "X" to be the selected one , any solution ?