Added Site Starter to WebGUI Initial Configuration.

This commit is contained in:
JT Smith 2007-07-23 19:44:05 +00:00
parent 86d92d68a8
commit 2082506efb
11 changed files with 660 additions and 139 deletions

View file

@ -619,7 +619,7 @@ sub toHtmlWithWrapper {
if ($self->passUiLevelCheck) {
my $rawField = $self->toHtml(); # has to be called before prepareWrapper for some controls, namely captcha.
my ($fieldClass, $rowClass, $labelClass, $hoverHelp, $subtext) = $self->prepareWrapper;
return '<tr'.$rowClass.'>
return '<tr'.$rowClass.' id="'.$self->get("id").'_row">
<td'.$labelClass.$hoverHelp.' valign="top" style="width: 180px;"><label for="'.$self->get("id").'">'.$self->get("label").'</label></td>
<td valign="top"'.$fieldClass.'>'.$rawField.$subtext."</td>
</tr>\n";