• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. ozone

    Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website Mango 5 Documentation Website
    O
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 7
    • Best 1
    • Controversial 0
    • Groups 0

    ozone

    @ozone

    1
    Reputation
    239
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    ozone Unfollow Follow

    Best posts made by ozone

    • RE: how to make style blinking via value?

      @jared-wiltshire

      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.

      posted in Dashboard Designer & Custom AngularJS Pages
      O
      ozone

    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.

      posted in Dashboard Designer & Custom AngularJS Pages
      O
      ozone
    • RE: how to make style blinking via value?

      @jared-wiltshire

      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.

      posted in Dashboard Designer & Custom AngularJS Pages
      O
      ozone
    • 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>
      
      posted in Dashboard Designer & Custom AngularJS Pages
      O
      ozone
    • 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?

      posted in How-To
      O
      ozone
    • 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

      posted in How-To
      O
      ozone
    • RE: Can I change MangoES logo to customer's logo when access it? And how?

      @phildunlap

      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?

      posted in How-To
      O
      ozone
    • 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.

      posted in How-To
      O
      ozone