This is a migrated thread and some comments may be shown as answers.

Targeting a new or blank window

2 Answers 99 Views
Sharepoint Integration
This is a migrated thread and some comments may be shown as answers.
mic
Top achievements
Rank 1
mic asked on 09 Jan 2008, 05:10 AM
Heya,

I have both radmenu and and radpanel installed in moss. If i create a link in the navigation to an external site, and select open in new window, this is not passed through to the menus when the page is rendered.

Any ideas how to get thois working. i couldnt see any parameters for the control in sharepoint designer to enable this.

2 Answers, 1 is accepted

Sort by
0
Paul
Telerik team
answered on 10 Jan 2008, 02:27 PM
Hello mic,

Frankly, we don't think the problem is caused by our control, but by your MOSS navigation provider; it doesn't populate the Target property thus the problem.

Regards,
Paul
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
mic
Top achievements
Rank 1
answered on 11 Jan 2008, 04:54 AM

Heya,

we are using the default providers in moss, CombinedNavSiteMapProvider
and CurrentNavSiteMapProvider. I've pasted the code we use for each. As there is an actual checkbox, when you select navigation in site settings and add a url, it would seem strange that it actually doesnt work.

Radmenu code

 <!-- fix for RadMenu CSS conflict when used in SharePoint --> 
<style type="text/css">.radmenu ul li {margin:0px;}</style> 
<telerik:radmenu id="radMenu1" runat="server" Skin="default" DataSourceId="siteMapDataSource1" CollapseDelay="0" RadControlsDir="/_wpresources/RadMenu.Net2/4.4.1__bbe59a8ad3533e68/RadControls">  
<ExpandAnimation Type="None" Duration="0"></ExpandAnimation> 
<CollapseAnimation Type="None" Duration="1000"></CollapseAnimation> 
</telerik:RadMenu> 
      
<PublishingNavigation:portalsitemapdatasource ID="siteMapDataSource1" Runat="server" SiteMapProvider="CombinedNavSiteMapProvider" EnableViewState="true" StartFromCurrentNode="true" StartingNodeOffset="0" ShowStartingNode="false" TreatStartingNodeAsCurrent="true" TrimNonCurrentTypes="Heading"/> 

Radpanel Code

<telerik:radpanelbar id="RadPanelbar1" runat="server" Skin="System" DataSourceId="siteMapDataSource2" ExpandMode="SingleExpandedItem" RadControlsDir="/_wpresources/RadPanelbar.Net2/4.3.1__e0d16f6f4c7e05de/RadControls"<ExpandAnimation Type="linear" Duration="300"></ExpandAnimation> 
<CollapseAnimation Type="linear" Duration="300"></CollapseAnimation> 
</telerik:RadPanelbar> 
      
<PublishingNavigation:portalsitemapdatasource ID="siteMapDataSource2" Runat="server" SiteMapProvider="CurrentNavSiteMapProvider" EnableViewState="true" StartFromCurrentNode="True" StartingNodeOffset="1" ShowStartingNode="false" TreatStartingNodeAsCurrent="True" TrimNonCurrentTypes="Heading"/> 

 

Tags
Sharepoint Integration
Asked by
mic
Top achievements
Rank 1
Answers by
Paul
Telerik team
mic
Top achievements
Rank 1
Share this question
or