List over objects added to the visualization? /Representation of gauges in touch vizu - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9) +--- Thread: List over objects added to the visualization? /Representation of gauges in touch vizu (/showthread.php?tid=295) |
List over objects added to the visualization? /Representation of gauges in touch vizu - Vesel - 06.05.2016 Hi! I am currently working on a project where I have used gauges in the visualization for showing temperature, relative humidity etc. However the gauges does not show in any way in the touch visualization. I have therefore added a regular KNX-object for the temperature to the visualization where I have chosen the icon to be a transparent .SVG. This way I avoid duplicate representation of the temperature in the normal visualization, and I still get a temperature value in the touch visualization. However, this makes it hard to edit the interface since you have to be able to press on a invisible object. Is there a better way to achieve this? Or might it be possible to add functionality so you can get a list over all the object added to the interface, so you can delete them without actually having to press on the icon in the visualization to select them? RE: List over objects added to the visualization? /Representation of gauges in touch vizu - admin - 06.05.2016 You can also use Custom CSS to hide specific elements from the standard visualization while keeping them visible in touch. Set "Additional classes" to touch-only for required elements and add this code to "Vis. graphics" > "Edit custom CSS": Code: .usermode .touch-only { display: none !important; } RE: List over objects added to the visualization? /Representation of gauges in touch vizu - Vesel - 06.05.2016 (06.05.2016, 12:28)admin Wrote: You can also use Custom CSS to hide specific elements from the standard visualization while keeping them visible in touch. Set "Additional classes" to touch-only for required elements and add this code to "Vis. graphics" > "Edit custom CSS": That's perfect! I'll stick to using CSS |