Thank you so much for the help. . I finally got it working using code you suggested, studied the example and modified to what I wanted. Works really well.
Best posts made by ozone
-
RE: how to make style blinking via value?
Latest posts made by ozone
-
How to make a button when pressed that requires a password to open a page?
I am using MangoES.
I have a button AAA on my home page to use to access another page when pressed. Customer requires to restrict the access to the page. So I wish to make the button AAA when pressed to pop up a variable block to ask to enter a password, than if the password is correct, then open the page.
Can this be done through the Dashboard coding? How to do the code? Any examples I can learn? Thanks. -
RE: how to make style blinking via value?
Thank you so much for the help. . I finally got it working using code you suggested, studied the example and modified to what I wanted. Works really well.
-
how to make style blinking via value?
I learned form the style via value example and modified for my data point. i am trying to use this to indicate status for good, warn, alarm, fault and isolate. The data point value will be 0, 1, 2, 3 and 4. Quite happy as it does change color when value changes. Below is the code I used. But the color will be all steady. I want to have steady green color only when "good" , but when alarms I wish to make it blink. Could you help what I need to code to make it blink when alarms? Thanks.
<style> .default { background-color: black; color: white; position: absolute; left:100px; top: 200px; height: 30px; width:30px; } .good { background-color: green; } .warn { background-color: orange; } .alarm { background-color: red; } .fault { background-color: brown; } .isolated { background-color: lightgrey; } </style> <ma-get-point-value point-xid="DP_1ff7e5b2-2d09-4134-aaf8-305005db3483" point="myPoint"></ma-get-point-value> <div class="default" ng-class="{'good': myPoint.value === 0, 'warn': myPoint.value === 1, 'alarm': myPoint.value === 2, 'fault': myPoint.value === 3, 'isolated': myPoint.value === 4}"> <ma-point-value point="myPoint"></ma-point-value> </div>
-
RE: Remote access to MangoES
@craigweb
Thanks for all the suggestions. Like the cloud server option.
In the MangoES V3 I have, I found there is the cloud connect module installed but shows unlicensed. Is that what is required for cloud connect functions to work? I assume it allows to connect to mango cloud server, right? If I go head to use mango cloud server for the remote access, what is the cost for the cloud connect module license? and anything else required? costs for the cloud server? -
Remote access to MangoES
I am quite new to MangoES V3 and trying to learn more.
Currently, I am using a router modem (D-Link DWR-921) with 4G sim card in it. My PC and the MangoES V3 are connected through the LAN ports of the DWR-921. I am able to access the MangoES as well as internet and also my mobile phone can access MangoES through WiFi too.
For the mobile phone access, I am hoping to access also remotely through the 4G network. I am not sure if this can be possible with this configuration. I think the DWR921 has 4G network connected, so I think mobile phone shall be able to connected through the router to access MangoEs somehow. Am I right or wrong? If it is possible, how can I set it up to allow such remote access from mobile phone? If not possible, any suggestions what I should use for remote access? Thanks -
RE: Can I change MangoES logo to customer's logo when access it? And how?
Thanks. I tried on the UI settings up load the logo. It works. But I don't know how I can access to folders of /opt/mango/overrides/web/images/. I connect PC to the MangoES through a router LAN port. How do I access MangoES folders to locate where the logo.png is?
-
Can I change MangoES logo to customer's logo when access it? And how?
I am new to MangoES and learning to program it. When accessing MangoES, is it possible to change the Mango logo to cutomer's logo? and how to ? thanks.