]> jspc29.x-matter.uni-frankfurt.de Git - mvdsensorcontrol.git/commitdiff
show/hide debug output
authorMichael Wiebusch <stratomaster@gmx.net>
Thu, 1 Aug 2013 16:25:04 +0000 (18:25 +0200)
committerMichael Wiebusch <stratomaster@gmx.net>
Thu, 1 Aug 2013 16:25:04 +0000 (18:25 +0200)
layout/testgui.css
tools/getdata.js
tools/testgui.js
tools/testgui.pl

index f8a141fa3c4fed0a5fead9dc8ad1c036b1c1a0b8..678dfb21a69f9a8637cb4ec149f3d6eec83e04af 100644 (file)
@@ -1,5 +1,9 @@
 
 
+#theConsole {
+  visibility:collapse;
+}
+
 .td_solid {
   
   border-style : solid;
index 3dc5cc4eb56c08ff69fef5118e1b392553b9916d..7a33b4c6f033674fb16c7709d0e84734fe4be61a 100644 (file)
@@ -1,5 +1,8 @@
 function getdata(command,dId,async) {
+  //async==true : do what you can when you can do it :D
+  //async==false : do the task after you finished the previous task!
   
+  // super duper debug line!
 //   alert("caller is " + arguments.callee.caller.toString());
   
   var xmlhttp = null;
index 9f7c0ae7e36582d8d9c9d9137995c7bbc6003e04..820f7791640614da8d0d3d1f445792fa06c11eec 100644 (file)
@@ -8,7 +8,7 @@ function reloadQuickEditArea(configFile,destId) {
   
   var configFile_ = encodeURIComponent(configFile);
   var destId_ = encodeURIComponent(destId);
-  getdata("testgui.pl?action=print_quickEditArea&configFile="+configFile_+"&destId="+destId_,destId,"false");
+  getdata("testgui.pl?action=print_quickEditArea&configFile="+configFile_+"&destId="+destId_,destId,false);
   
 }
   
@@ -23,6 +23,18 @@ function run(time) {
   for( var sensorId in previewAreaIdHash){
 //     alert(laufid+" => "+previewAreaIdHash[laufid]);
     var sensorId_ = encodeURIComponent(sensorId);
-    getdata("testgui.pl?action=showPlot&sensorId="+sensorId_,previewAreaIdHash[sensorId],"false");
+    getdata("testgui.pl?action=showPlot&sensorId="+sensorId_,previewAreaIdHash[sensorId],true);
   }
+}
+
+
+
+function toggleVis(elementId) {
+if(document.getElementById(elementId)){
+if( document.getElementById(elementId).style.visibility == "visible") {
+  document.getElementById(elementId).style.visibility = "collapse";
+} else {
+  document.getElementById(elementId).style.visibility = "visible" ;
+}
+}
 }
\ No newline at end of file
index 8a959e479644f5f9ed35d7229dd1e702a30ed4ec..33fda7f9331da5b43ab1d4f78a60f33f050b4f00 100755 (executable)
@@ -164,7 +164,8 @@ for my $sensorId (keys %previewAreaIdHash){
 print "</script>";
 # end of that story
 
-print "<div id=theConsole>[the \"console\"]</div>";
+print "<input type='button' value='show/hide debug output' onclick='toggleVis(\"theConsole\")'>";
+print "<div id='theConsole'>[the \"console\"]</div>";
 
 print end_html;