Hi
I have implemented the radpanel bar, and using the "SPNavigationProvider" i SharePoint (MOSS 2007). I have set PersistStateInCookie to True in order to keep the menu in the right state when clicking on the links in the menu, but when I go to another site which doesn't have the rad panel bar, the panelbar on the page I left will be in the same state as I left when I open that site again. I want the menu to reset to default when I visit other sites. Is that possible?
Another problem that I have is that the menu doesn't expand when I hyperlink from another site. It just stays the way it was. Is it possible to make the menu expand when I link to a "point" in the menu?
Please advise :)
This is my code
Regards
I have implemented the radpanel bar, and using the "SPNavigationProvider" i SharePoint (MOSS 2007). I have set PersistStateInCookie to True in order to keep the menu in the right state when clicking on the links in the menu, but when I go to another site which doesn't have the rad panel bar, the panelbar on the page I left will be in the same state as I left when I open that site again. I want the menu to reset to default when I visit other sites. Is that possible?
Another problem that I have is that the menu doesn't expand when I hyperlink from another site. It just stays the way it was. Is it possible to make the menu expand when I link to a "point" in the menu?
Please advise :)
This is my code
| <telerik:RadPanelBar |
| Runat="server" |
| DataSourceID="SPNavigationProvider" |
| AllowCollapseAllItems="true" |
| Skin="WebBlue" |
| ExpandMode="SingleExpandedItem" |
| PersistStateInCookie="True" |
| CollapseDelay="300" |
| EnableTheming="True" |
| Font-Bold="False" |
| ExpandDelay="300" |
| EnableViewState="true" |
| Width="215px"> |
| <CollapseAnimation |
| Type="Linear" |
| Duration="100"> |
| </CollapseAnimation> |
| <ExpandAnimation |
| Type="None" |
| Duration="100"> |
| </ExpandAnimation> |
| </telerik:RadPanelBar> |
| <asp:SiteMapDataSource runat="server" ID="SPNavigationProvider" StartFromCurrentNode="true" ShowStartingNode="false"/> |
Regards