Default Navigation Widget open in new tab
I am using the navigation widget which is available in the toolbox. I am using "custom selected pages" with vertical style. Is there a way to force some of the pages to open in a new tab. Literally all I am trying to do is add target ="_blank" in the anchor tag,
Hello,
For this one you will need to use an external navigation template (see Other options... section at the bottom) and you can subscribe to the ItemDataBound event of the control you're using on the template and set target blank to the tab/node/item (depending on the control again). For example:
protected
void
RadSiteMap1_NodeDataBound(
object
sender, Telerik.Web.UI.RadSiteMapNodeEventArgs e)
e.Node.Target =
"_blank"
;