my $quickEditMaskTree;
my $setupTree;
+my $sensorAreaId;
+my $quickEditAreaId;
#######################
#if called without arguments,
init_html();
} else {
+#####################################
+######## process CGI request ########
+#####################################
print header;
- print start_html(
- -title=>'testgui_debug',
- -style=>{'src'=>'../layout/styles.css'},
- -script=>{ -type => 'text/javascript',
- -src => './testgui.js'}
- );
#process the arguments
+ if ($q->param('action') eq "print_quickEditArea") {
+ my $configFileName = $q->param('configFile');
+ my $destId = $q->param('destId');
+ $quickEditAreaId = $destId;
+ print_quickEditArea($configFileName);
+ } else {
+ print start_html(
+ -title=>'testgui_debug',
+ -style=>{'src'=>'../layout/styles.css'}
+ );
report_param();
+ }
+
}
my $sensorPosition = $sensor->findnodes("./position")->shift();
my $sensorDescription = $sensor->findvalue("./description");
- my $sensorAreaId = $sensorId;
+ $sensorAreaId = $sensorId;
print "<div class='sensorAreaDiv' id='".$sensorAreaId."'>";
print "<table class='sensorAreaTable'>";
print "<tr>";
print "</tr>";
print "<tr>";
my $previewFieldId = "preview".$sensorName;
- print "<td id='".$previewFieldId."' >blah</td><td>";
+ print "<td id='".$previewFieldId."' >blah</td>";
+ $quickEditAreaId = "quickEdit".$sensorConfig;
+ print "<td id='".$quickEditAreaId."'>";
print_quickEditArea($sensorConfig);
print "</td>";
print "</tr>";
if ( $xmlfile eq $configFile ) { # we are printing the Specifications Tree
print <<EOF;
-<td class='button_move' onclick='deleteSettings(selectedConfigFile(),"$registerName","");reloadSetTree()'> X </td>
+<td class='button_move' onclick='deleteSettings("$configFileName","$registerName","");reloadQuickEditArea("$configFileName","$quickEditAreaId")'> X </td>
EOF
}
if ( $xmlfile eq $specFile ) { # we are printing the Settings Tree
print <<EOF;
-<td class='button_move' onclick='copyDefaultRegister(selectedConfigFile(),"$registerName");reloadSetTree()'> → </td>
+<td class='button_move' onclick='copyDefaultRegister("$configFileName","$registerName");reloadQuickEditArea("$configFileName","$quickEditAreaId")'> → </td>
EOF
}
else {
print <<EOF;
<td align='right'>
-<input type='text' align='right' value='$fieldValue' onchange='saveSettings(selectedConfigFile(),"$registerName","$fieldName",this.value);reloadSetTree()' >
+<input type='text' align='right' value='$fieldValue' onchange='saveSettings("$configFileName","$registerName","$fieldName",this.value);reloadQuickEditArea("$configFileName","$quickEditAreaId")' >
</td>
EOF
}
print '</td>';
- if ( $xmlfile eq $specFile ) { # we are printing the Specifications tree
- print <<EOF;
-<td class='button_move' onclick='saveSettings(selectedConfigFile(),"$registerName","$fieldName","$fieldValue");'> → </td>
-EOF
- }
+# if ( $xmlfile eq $specFile ) { # we are printing the Specifications tree
+# print <<EOF;
+# <td class='button_move' onclick='saveSettings("$configFileName","$registerName","$fieldName","$fieldValue");'> → </td>
+# EOF
+# }
if ( $xmlfile eq $configFile ) { # we are printing the Settings Tree
if ( $isHeritageFrom eq "" )
{ # these are actual settings, not inherited!
print <<EOF;
-<td class='button_move' onclick='deleteSettings(selectedConfigFile(),"$registerName","$fieldName");reloadSetTree()'> X </td>
+<td class='button_move' onclick='deleteSettings("$configFileName","$registerName","$fieldName");reloadQuickEditArea("$configFileName","$quickEditAreaId")'> X </td>
EOF
}
else {