X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Felements%2Fpopup_link.html;h=fbb6ce3b8ad3d6e6dbf0d94a1be2a762292ba275;hp=a444ad1252200c978a004d83d23dc403ad721d0c;hb=f3b1e139720b2262516ee3690b1d4b2b9941b500;hpb=4026c3c89e0c73b261e071508b863479aaf12628 diff --git a/httemplate/elements/popup_link.html b/httemplate/elements/popup_link.html index a444ad125..fbb6ce3b8 100644 --- a/httemplate/elements/popup_link.html +++ b/httemplate/elements/popup_link.html @@ -2,8 +2,7 @@ Example: - - + include('/elements/init_overlib.html') include( '/elements/popup_link.html', { #hashref or a list, either way is fine @@ -12,20 +11,27 @@ Example: 'label' => 'click me', # text of tag #strongly recommended - 'actionlabel => 'You clicked', # popup title + 'actionlabel' => 'You clicked', # popup title #opt - 'width' => '540', + 'width' => 540, + 'height' => 336, 'color' => '#ff0000', 'closetext' => 'Go Away', # the value '' removes the link + + #uncommon opt 'aname' => "target", # link NAME= value, useful for #targets + 'target' => '_parent', + 'style' => 'css-attribute:value', } ) % if ($params->{'action'} && $label) { {'aname'} ? 'NAME="'. $params->{'aname'}. '"' : '' %> + onClick="<% $onclick |n %>" + <% $params->{'aname'} ? 'NAME="'. $params->{'aname'}. '"' : '' |n %> + <% $params->{'target'} ? 'TARGET="'. $params->{'target'}. '"' : '' |n %> + <% $params->{'style'} ? 'STYLE="'. $params->{'style'}. '"' : '' |n %> ><% $label %>\ % } <%init>