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

    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
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 5
    • Best 0
    • Controversial 0
    • Groups 0

    ms_brunette

    @ms_brunette

    0
    Reputation
    8
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    ms_brunette Unfollow Follow

    Latest posts made by ms_brunette

    • Mango 5 - bugs or user non-friendly things

      Hello!

      I am trying to work in Mango 5 after Mango 3 and there is things that look and work differently> Please help me understand if there are bugs or what I'm doing wrong.


      Tag <ma-dialog>
      If a dialog window takes up the entire height of the page, the title of this window hides under the upper bar of Mango


      Tag <ma-bar-display>
      The bar is filled if value < 0 (even if minimum sets to 0)


      Showing of listboxes
      The width of any listbox is almost 0 (by default)


      In the data sources menu
      After trying sort data points by their tag (which don’t work) any sort or filter (even not by tag) is block until refreshing page or selecting another data source


      Menu of WatchLists
      The default parameters don’t change when the chosen WL is changed (you can see a parameter in the default parameter field which is absent in the chosen WL)


      Creating WL
      Building a WL with “WL settings” as “point query” and “parameter type” as “data point tag” and select a tag for this parameter – in the resulting list there is a choice like “No <tag_name> tag” (where <tag.name> is name of selecting parameter’s tag)

      In settings of parameter there is an opportunity to set a restriction. How should I restrict choosing tag to a few different strings? (comma separated enumeration doesn’t work)


      I have screenshots if it needs for better understanding but I can't add it because "Imgur is temporarily over capacity. Please try again later."

      posted in User help
      M
      ms_brunette
    • RE: Mango 5: Reorganize the default menu into our own structure

      @greychrist Thank you for the advice. It isn't exactly what I wanted but it works. Thanks again!

      posted in User help
      M
      ms_brunette
    • Mango 5: Reorganize the default menu into our own structure

      Hello, users and developers (hope) of Mango 5,

      We are about to start using Mango 5, and its new redesigned menu is very uncomfortable for us. We have own structure of our pages and want to have all non-users menu inside only one admin folder, but I can't found how to reorganize default tree of folders. It is very huge and we don't need big part of them.
      Maybe there is a way to get menu view as it was in Mango 3, and I just don't see it?

      posted in User help
      M
      ms_brunette
    • RE: Getting a point value without an endless loop

      @MattFox Thank you for answering! Actually, I already won this battle, but apparently there is a whole war ahead :D
      I didn't understand all the behavior, but I found a working solution for my case.
      Regarding your comments - in my environment angular.element('#id') doesn't work by some reasons, and I still don't know how to write maPointValues correctly..
      Thanks for the link. I found it very useful!

      posted in User help
      M
      ms_brunette
    • Getting a point value without an endless loop

      Hi everyone!
      I'm a new worker with Mango and I'm trying to write my own module. I want to get a latest value of a data point, but I found only a way to get a point (not a value). Is there a function to get a value? I tried to find a syntax for the component <ma-get-point-value> but I could not..
      My code for getting point is:

      $scope.getPoint = (city, block) =>
          {
              maPoint.query({rqlQuery: "eq(tags.City,"+city+")&eq(tags.Block,"+block+")"}).$promise.then((points) => {
                  $scope.blockPoints = points;
              })
              
              document.getElementById("block").innerHTML = $scope.blockPoints[0].xid;
          }
      

      I also tried to get point value through $http.get. I got the value, but my page went into an endless loop.. And I don't understand how to stop it (and why it continues).
      My code with $http.get is:

      $scope.pointValue = []
      $scope.getPrumer = () =>
          {
              $http.get(`https:///localhost:8080/rest/v2/point-values/latest/xid?fields=VALUE&limit=1`).then(response =>
                  {
                      $scope.pointValue = response.data;
                  });
              
              document.getElementById("value").innerHTML = $scope.pointValue[0].value;
          }
      

      Please help me understand what I'm doing wrong.

      posted in User help
      M
      ms_brunette