• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. realmooseman
    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
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 13
    • Groups 0

    Topics

    • realmoosemanR

      Disable data purging

      Watching Ignoring Scheduled Pinned Locked Moved User help purge
      1
      0 Votes
      1 Posts
      665 Views
      No one has replied
    • realmoosemanR

      Dashboard writes only whole numbers

      Watching Ignoring Scheduled Pinned Locked Moved User help
      7
      0 Votes
      7 Posts
      2k Views
      realmoosemanR
      Ya, I was numeric but when I clicked on the refresh it picked alpha. Presently is selected for numeric.
    • realmoosemanR

      Scripting data source points don't get a value

      Watching Ignoring Scheduled Pinned Locked Moved Scripting general Discussion
      5
      0 Votes
      5 Posts
      2k Views
      realmoosemanR
      Hey Folks, Thank you so much! It was indeed a newbie thing as suggested by Phil and Fox. Really appreciate your help. Jim.
    • realmoosemanR

      video component codecs

      Watching Ignoring Scheduled Pinned Locked Moved User help
      5
      0 Votes
      5 Posts
      2k Views
      Jared WiltshireJ
      Here's an example user module to get you started - define(['angular', 'require'], function(angular, require) { 'use strict'; const userModule = angular.module('userModule', ['maUiApp']); class VideoComponentController { static get $inject() { return ['$element']; } constructor($element) { this.videoElement = $element[0].querySelector('video'); } $onChanges(changes) { if (changes.pointValue) { this.pointValueChanged(); } } pointValueChanged() { if (this.pointValue) { this.videoElement.play(); } else { this.videoElement.pause(); } } } userModule.component('myVideoComponent', { template: `<video style="height: 100%; width: 100%" muted loop> <source src="/rest/v2/file-stores/default/Interactive SVG Graphics-sm.mp4" type="video/mp4"> </video>`, controller: VideoComponentController, bindings: { pointValue: '<' } }); return userModule; }); // define Use it like this - <div class="ma-designer-root" id="e9dba175-4f00-4a6d-9030-d83f4eb9d0a6" style="width: 1366px; height: 768px; position: relative;"> <my-video-component id="d02bb2e2-78fa-42ae-a287-58c777440a0c" style="position: absolute; left: 30px; top: 50px; width: 744px; height: 345px;" point-value="myPoint.value"></my-video-component> <ma-get-point-value id="7c7525b6-5fe3-4dbf-a2bb-65790be100c0" style="position: absolute; left: 193px; top: 463px;" point-xid="voltage" point="myPoint"></ma-get-point-value> </div>
    • realmoosemanR

      Video Player

      Watching Ignoring Scheduled Pinned Locked Moved User help
      3
      0 Votes
      3 Posts
      1k Views
      realmoosemanR
      Ok I did that and will recheck to see where I missed the documentation. I will have a look also at the user module. That seems like a good candidate. Thanks for the pointer Jim.