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.

  • Charts, curves...

    9
    0 Votes
    9 Posts
    3k Views
    S
    thanks for that input... i guessed there would be a performance hit involved... maybe if the toggle was just on the fly for that viewing session and defaulted after leaving the view
  • Drop down box

    5
    0 Votes
    5 Posts
    2k Views
    J
    Hello, It needs to have the "selected" in the option to be sync. The basic structure is this. <select onChange='somefunction()'> <option value=1 > one </option> <option value=2 selected > two </option> <option value=3 > three </option> </select> I used the loop to to write the selected into correct option (and not to write tens of times the same code) Here is an example without any loops. //Simple Select example var s=""; s+="<select onChange='mango.view.setPoint("+ point.id +", \""+ pointComponent.id +"\", this.options[this.selectedIndex].value )'>"; s+= "<option value=1"; if (value == 1 ) { s+= " selected ";} s+= "> one </option>"; s+= "<option value=2"; if (value == 2 ) { s+= " selected ";} s+= "> two </option>"; s+= "<option value=3"; if (value == 3 ) { s+= " selected ";} s+= "> three </option>"; s+= "<option value=4"; if (value == 4 ) { s+= " selected ";} s+= "> four </option>"; s+="</select>"; return s; I will put some more select examples from my views into the other topic. BR -Jokke
  • Modbus tcp errors?

    3
    0 Votes
    3 Posts
    2k Views
    J
    Hi Neil, I have seen similar errors on my system, when the PLC replies with nonsense. The HW of mine has a limitation on how many registers can be queried on one call. Error what i have seen is "Exception from modbus master: Unsupported IP protocol id: 1" The topic about it is here http://mango.serotoninsoftware.com/forum/posts/list/549.page If this happens all the time and not just randomly, you could take a capture of the messages with wireshark. It would help on checking what are the message content. BR -Jokke
  • Users, type

    3
    0 Votes
    3 Posts
    1k Views
    S
    think i'd like to keep alarm lllist, views and point details for trending,... i had a user create a point link i dint know they'd done... :-/ tick box selection for allowed items would be nice
  • Backup/restore, offline project creation

    3
    0 Votes
    3 Posts
    2k Views
    M
    Have you looked at the import/export?
  • Now using mysql

    8
    0 Votes
    8 Posts
    3k Views
    M
    Ok. Unfortunately your description doesn't ring any bells. If you ever produce the error again, let me know.
  • Serverside script and var "events"

    7
    0 Votes
    7 Posts
    4k Views
    M
    It can't find the method because the method takes a ResourceBundle parameter, so it looks for a method that takes no parameters, which doesn't exist. I've added the appropriate resource bundle to the script context under the var "bundle". So, your script would be "events.get(0).message.getLocalizedMessage(bundle)". This will be available in the next release. Do note though that the rendered events should appear in a warning rollover to the left of the component.
  • BacNet Help

    3
    0 Votes
    3 Posts
    2k Views
    M
    There can only be a single BACnet local device running on a particular port at a time. You probably have your data source running on 0xBAC0 when you try to run your discovery test. Local devices are not shared for technical reasons. Try stopping your data source and re-running your discovery test.
  • ScriptPoint usage

    6
    0 Votes
    6 Posts
    4k Views
    M
    Hi Steve, You should check out the Rhino documentation. The Java Scripting implementation of it into the JRE might get in the way of some stuff, but you should be able to access a lot of stuff directly within your javascript code. (I have not tested this to any great extent, but in theory it is possible.) Also, Rhino does in fact compile scripts to Java for fast execution when the optimization level is properly set. This works in Mango Automation which uses Rhino directly, but M2M uses the Java Scripting impl via which there doesn't appear to be a public way to set the optimization level. Maybe a future version of M2M will use Rhino directly.
  • Modbus data transfer

    4
    0 Votes
    4 Posts
    3k Views
    A
    Thank’s for your advice, Joel. That way it is VERY easy. I think that so complicated. :oops: Simply is beautifully…. BR Antsu
  • Exporting and Importing to another Mango Problem

    4
    0 Votes
    4 Posts
    2k Views
    JoelHaggarJ
    Thanks, I'm impressed with how fast you guys put out new releases. Thanks, Joel.
  • Setting point values in Graphic View

    3
    0 Votes
    3 Posts
    2k Views
    M
    No, there are no other settings. The "Settable override" box should be checked, as well as "Display controls". Otherwise, the point only needs to be settable itself. If you are still having problems, can you provide an export of the view?
  • Mango Emailing System Log Files

    9
    0 Votes
    9 Posts
    3k Views
    JoelHaggarJ
    Thanks, I'm running linux and always forget to check the permissions. I just needed to give the right read/write properties to the file and it works perfect. Thanks, Joel.
  • Event detector with duration

    6
    0 Votes
    6 Posts
    3k Views
    W
    Great. I'm looking forward to it.
  • Pachube Rate Limit

    5
    0 Votes
    5 Posts
    3k Views
    M
    It sends a snapshot of all the points every 15 minutes.
  • Device shoulder tap using SMS or UDP

    3
    0 Votes
    3 Posts
    3k Views
    M
    You could create a scheduled event that fires when you want to send the tap, and then handle the event with a process handler which would run some script. Stuff like this will be easier in the new version.
  • 'setUserMuted is not defined' in mango1.11.0 version!!!

    4
    0 Votes
    4 Posts
    2k Views
    M
    It's a matter of clearing your cache. A quick ctrl+f5 usually does the trick.
  • Screens - jumps, drop down order

    10
    0 Votes
    10 Posts
    4k Views
    F
    It may be an issue for server-script component I used the property "disabled" in a button and saved the view. When I try to edit the view, this component is also disabled. So I need to enable the button using the datapoint logic to enable the component editing on the view.
  • Modbus serial port

    4
    0 Votes
    4 Posts
    3k Views
    M
    This appears to be a problem with *nix, although i don't know if it is widespread. It seems the request to the comm layer for the list of ports does not include those that are currently in use. There doesn't appear to be a good solution beyond oja's, but we'll keep looking.
  • Updating graphics

    4
    0 Votes
    4 Posts
    2k Views
    S
    thanks... i find it helps to reset the browser cache (well at least on chrome). keep up the great work! Neil