RoyBaird
Posts: 115
|
| Posted: 04/22/2010, 6:45 AM |
|
I have a menu item that I want to open in a separate browser window. I selected "_blank" in the menu item parameter tab, but it does not open in another window.
Has anyone else had this problem? any ideas on resolution?
Thanks,
_________________
Roy |
 |
 |
mamboBROWN
Posts: 1713
|
| Posted: 05/16/2010, 11:20 AM |
|
RoyBaird
Are you still have a menu builder problem??
|
 |
 |
RoyBaird
Posts: 115
|
| Posted: 05/16/2010, 4:39 PM |
|
yes, still does not work , even though the PHP shows "_blank" in the command.
here is the code:
$this->StaticItems[] = array("item_id" => "MenuItem16", "item_id_parent" => null, "item_caption" => "help", "item_url" => array("Page" => $this->RelativePath . "./help/help.html", "Parameters" => null), "item_target" => "_blank", "item_title" => "");
_________________
Roy |
 |
 |
mentecky
Posts: 321
|
| Posted: 06/01/2010, 9:44 AM |
|
This made me freaking mental!!
#1 Set attributes on the menu component for "Target" and "Title"
#2 On the HTML tab find the link for menu items.
Add the following to the A tag:
target="{Menu1:Target}" title="{Menu1:Title}"
Where "Menu1" is the name of the menu component.
Generate the page and it works.
Rick
_________________
http://www.ccselite.com |
 |
 |
|