5.3 redirect page to web url in new window
Should this be working.
See image.
Markus
Thank's to Jochem I found out what the problem was.
Since Navigation Widget does not yet seem to have a PanelBar option I use RadControl Panelbar and Link it to a Datasource Set to SitefinitySiteMap. Target seems to get lost there.
Does anyone know how I can set the target property of a radPanelbar which has the SitefinitySiteMap as datasource.
Don't seem to find that property.
Markus
PS: Still hoping to find the panelbar in navigation widgets some day.
Hello Markus,
You can subscribe to the ItemDataBound event and assign the Target property from there:
protected void Page_Load(object sender, EventArgs e) RadPanelBar1.ItemDataBound += new Telerik.Web.UI.RadPanelBarEventHandler(RadPanelBar1_ItemDataBound); void RadPanelBar1_ItemDataBound(object sender, Telerik.Web.UI.RadPanelBarEventArgs e) if(e.Item.Value == "PageTitle") e.Item.Target = "_Blank"; Dear Pavel
Thanks for the answer, but
a) I would have to build a controls
b) I would have to search for PageTitel -> not dynamic
This would all not be possible if finaly we would get the PanelBar as Navigation Option. Requested this since 4.x - are we ever going to see this?
Markus
Hi Markus,
We have a PITS issue opened for this request where you can vote to increase its popularity.
Greetings,After 1 1/2 years requesting the PanelBar I get a PITS opened.
We are making progress :-)
Thanks.
Markus