Object Background's depending of value - 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: Object Background's depending of value (/showthread.php?tid=796) |
Object Background's depending of value - jmir - 19.05.2017 Hello! I have alarm objects and need to change Object's Background to red color when is active, and grey when inactive. I like the default button and I want this to red color. Is it posible? Thanks! RE: Object Background's depending of value - buuuudzik - 19.05.2017 Everything in visualisation is possible via "Custom javascript". Can you give some more info about: - is this object is shown as text or image? - if text(what text is for on and what for off) - if image(what path is to image for on and for off)? RE: Object Background's depending of value - jmir - 22.05.2017 Hi! The Display mode is: Icon But this icon is an empty image for ON and OFF. I have 'Hide Background' unchecked and I have one text over this button. I want change this button background's color to red when object is ON and get back to grey when OFF. Thanks! RE: Object Background's depending of value - admin - 22.05.2017 1. Add status-btn to button's Additional classes. 2. Add this to Custom CSS, adjust colors as needed: Code: .status-btn.on { Code: $(function(){ RE: Object Background's depending of value - jmir - 22.05.2017 Thanks! It works perfect with one Object but i Have 50 objects and All of them are turning RED if only one is in Alarm! How can I do it ? Need to create one class per object or is there another solution? Lot of Thanks! RE: Object Background's depending of value - admin - 22.05.2017 Have you considered just using a custom icon for this? RE: Object Background's depending of value - jmir - 24.05.2017 I have considered but I didn't want to do that. Now it's OK thanks!! |