- fix: "Link to a page in the webgui asset tree" has default "open in a new

window"
 - fix: cs - attachments
fixed a tabbing problem in admin console introduced intraversion
This commit is contained in:
JT Smith 2006-06-14 16:38:16 +00:00
parent 833840a806
commit 24ed8f3e3f
6 changed files with 22 additions and 8 deletions

View file

@ -11,6 +11,7 @@ package WebGUI::Operation::FormHelpers;
#-------------------------------------------------------------------
use strict;
use Tie::IxHash;
use WebGUI::Asset;
use WebGUI::Asset::Wobject::Folder;
use WebGUI::Form::Group;
@ -149,12 +150,15 @@ sub www_richEditPageTree {
-label=>$i18n->get(104),
-hoverHelp=>$i18n->get('104 description'),
);
my %options = ();
tie %options, 'Tie::IxHash';
%options = ("_self"=>$i18n->get('link in same window'),
"_blank"=>$i18n->get('link in new window'));
$f->selectBox(
-name=>"target",
-label=>$i18n->get('target'),
-hoverHelp=>$i18n->get('target description'),
-options=>{"_self"=>$i18n->get('link in same window'),
"_blank"=>$i18n->get('link in new window')},
-options=>\%options
);
$f->button(
-name=>"button",