Versioner sammenlignet

Nøgle

  • Linjen blev tilføjet.
  • Denne linje blev fjernet.
  • Formatering blev ændret.

...

Kodeblok
dirname=2016-04-08 filename=2130032104_motd.jpg

In this screenshot, clicking on a "path" shows the camera pic in a div:

Image Added 

 

First, convert the Dashboard to HTML

...

Kodeblok
element3.on("click", function(e) {
        // Prevent drilldown from redirecting away from the page
        e.preventDefault();
      
        // Console feedback
        //console.log("Clicked the table:", e.data);
 
        //ChaneChange the DIVs source
        var campicimg = document.getElementById("campic"); 
        campicimg.src="http://server.dk/Baghus/" + e.data['click.value2'] + "/" + e.data['click.value3']           
});

...