added save buttons at the top of HTML forms

This commit is contained in:
JT Smith 2006-04-07 04:37:20 +00:00
parent 91a620a9f5
commit 1b2c824a9c
16 changed files with 38 additions and 11 deletions

View file

@ -236,9 +236,9 @@ sub print {
$tabs .= 'style="display: none;"';
}
$tabs .= '>'.$self->{_tab}{$key}{label}.'</span> ';
$form .= '<div id="tabcontent'.$i.'" class="tabBody"><table>';
$form .= '<div id="tabcontent'.$i.'" class="tabBody"><table><tbody>';
$form .= $self->{_tab}{$key}{form}->printRowsOnly;
$form .= '</table></div>';
$form .= '</tbody></table></div>';
$i++;
}
$output .= '<div class="tabs">'.$tabs.$self->{_submit}."&nbsp;&nbsp;".$self->{_cancel}.'</div>';