• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. ClaireP
    3. Topics

    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
    C
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 5
    • Groups 0

    Topics

    • C

      Need Help with file location

      Watching Ignoring Scheduled Pinned Locked Moved User help
      2
      0 Votes
      2 Posts
      718 Views
      MattFoxM
      Your datasources/scripts/users etc are all stored in the H2 database (or mysql if you're using that). The physical file location depends on where your mango install is. it will be [Mango DIR]\databases The database itself is the mah2.h2.db file. If you're after files you've uploaded, they will be in [Mango DIR]\filestore Hope that is what you're looking for Fox
    • C

      Newbie with scripting data source

      Watching Ignoring Scheduled Pinned Locked Moved User help
      6
      0 Votes
      6 Posts
      1k Views
      MattFoxM
      For a start, your for loop needs to have var i=0; i<=421.value; i++ Secondly, to set a value as can be read under "Mango JavaScript" you use the set function: if ( p420.value == true ) { for (var i=0; i<=421.value; i++) { //1st case p422.set( p422.value + 1); //current value + 1*value of slider + 1 } } else //else if not needed since you're either true or not true (==false) { p422.set( 0 ); //Set to 0 } Try rereading the docs provided by Joel to get a better grasp of what I have written and how it relates to the documentation provided. Fox
    • C

      Newbie - How to make a button to do something

      Watching Ignoring Scheduled Pinned Locked Moved User help
      2
      0 Votes
      2 Posts
      705 Views
      MattFoxM
      Welcome to the forum Claire, first up, I'd advise having a closer look at the examples page at the bottom of the menu. It shows how to utilise various components in the system and how they all work together. Secondly, given you're trying to accomplish something, copy the markup from the dashboard editor to show us what you have done so far and what you're hoping to achieve. be sure to paste the code between the code (</> button) tags. Thirdly, turn on the API menu under administration -> edit menu then save at the top, this explains how each individual item in the mango dashboard functions. Finally, the dashboard utilises AngularJS. So it would be good familiarise yourself with the formatting used to display and manipulate the view you are building. If you have any further questions, feel free to ask here. I also recommend searching the forums, there are plenty of examples around of what others have done that you may be able to build from. Fox