HOW-TOUse NavigateUrl in PanelItems that expand/collapseSOLUTIONWhen you have a PanelItem that has children PanelItems and you set its NavigateUrl property, the default behavior of RadPanelBar is to expand or collapse this PanelItem but not to redirect to the URL specified in the NavigateUrl property. One way to make this work is to use:
In order to use these events create a JavaScript function like this:
function onExpand(panel){ location.href = panel.NavigateUrl; return (false);}
Then set the BeforeClientPanelItemExpanded or AfterClientPanelItemExpanded property of RadPanelBar to the name of this function like this: BeforeClientPanelItemExpanded="onExpand". Thus, when you try to expand a PanelItem with children PanelItems, you will be redirected to its NavigateUrl instead. Then in the code-behind of the page specified by the NavigateUrl property you should set the Expanded property of the PanelItem to true. You can do this for example in the Page_Load event handler.
Resources Buy Try