or
function validate() { if (document.getElementById("<%=rcmbcurrencycode.ClientID%>").value == "Select") { alert("Currency Code can not be blank"); return false; }if (document.getElementById("<%=rtxtinteresttype.ClientID%>").value == "") { alert("Interest Type can not be blank"); return false;}}var alphaExp = /^[a-zA-Z]+$/; if (document.getElementById("<%=rtxtinteresttype.ClientID%>").value == "") { alert("Interest Type can not be blank"); return false; if (rtxtinteresttype.value.match(alphaExp)) { return true; } else { alert("pls enter only numbers"); return false; } }<FONT color="#0000ff" size="2" face="Consolas"><FONT color="#0000ff" size="2"face="Consolas"><FONT color="#0000ff" size="2"face="Consolas"><telerik:RadPanelItem Text="Content Details" Expanded="True"PostBack="false"Selected="true"><BR> <Items><BR> <telerik:RadPanelItem Text="Description" Value="DESCRIPTION"></telerik:RadPanelItem><BR> <telerik:RadPanelItem Text="Objectives/Requirements"Value="Requirements"></telerik:RadPanelItem><BR> <telerik:RadPanelItem Text="Scenario Details"Value="ScenarioDetails"></telerik:RadPanelItem> <BR> <telerik:RadPanelItem Text="Categorization"Value="TrainingDiscipline"></telerik:RadPanelItem><BR> <telerik:RadPanelItem Text="Simulator Details"Value="SimulatorDetails"></telerik:RadPanelItem> <BR> <BR> </Items><BR> </telerik:RadPanelItem><BR></FONT></FONT></FONT>Now I want to maintain the Selected Item even if click the Root Item(Here : "DESCRIPTION").
if click any item under "DESCRIPTION" then the selected item is highlighted
and Now if click the root item i.e."DESCRIPTION" then the "DESCRIPTION" is Highlighted, but i want to hhighlight the child Item i.e "Categorization", because i'm still on the same page.
I attached the screen shots also. I want to maintain the Highlighted selected Item based on the current page.
Thanks in Advance
karthik
private void AddStyleSheets(RadStyleSheetManager styleSheetManager) { styleSheetManager.StyleSheets.Clear(); if (SessionManager.CurrentSessionManager.PageTheme.ToLower().Equals("tone")) { styleSheetManager.StyleSheets.Add(new Telerik.Web.UI.StyleSheetReference("SNet.RTO.Skins.TOne.ComboBox.css", "SNet.RTO.Skins.TOne")); } else { styleSheetManager.StyleSheets.Add(new Telerik.Web.UI.StyleSheetReference("CustomSkins.ComboBox.css", "CustomSkins")); } styleSheetManager.ApplyStyleSheetSkin(Page); }