added fieldsets around form controls with multiple elements

This commit is contained in:
Graham Knop 2008-09-16 16:27:15 +00:00
parent d41625dc40
commit 98bfd9ac1d
5 changed files with 36 additions and 24 deletions

View file

@ -137,7 +137,7 @@ Renders a series of checkboxes.
sub toHtml {
my $self = shift;
my $output;
my $output = '<fieldset style="border:none;margin:0;padding:0">';
my $alignment = $self->alignmentSeparator;
# Add the select all button
@ -164,7 +164,7 @@ sub toHtml {
. $alignment
;
}
$output .= "</fieldset>";
return $output;
}