Navigation

    REXYGEN Community Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. ondrej_severa
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 10
    • Best 0
    • Groups 1

    ondrej_severa

    @ondrej_severa

    administrators

    0
    Reputation
    266
    Profile views
    10
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    ondrej_severa Follow
    administrators

    Latest posts made by ondrej_severa

    • RE: picture as background

      Dear Scoobsalamander,
      your background must be available in the www folder of the webserver. You have two possible options for how to upload your picture to the webserver.

      1. Copy your background to the hmisrc folder in your project. Then point your CSS to background-image: url("/hmi/background.jpg");
        The disadvantage of this approach is that you will upload your background every time you compile the project.

      2. Use WinSCP or a similar tool to upload your background to the target. The location must be in the webserver root or below. The root of the webserver is in /rex/www folder. So upload your background to '/rex/www/bacground.jpg' and change your CSS to background-image: url("/background.jpg");

      Best regards
      Ondrej

      posted in REXYGEN HMI Designer
      ondrej_severa
      ondrej_severa
    • RE: HTML dropdown menu color animation

      Hello Kris,
      you have to subscribe for reading the alarms (some boolean signals I guess) on the main page or on every page. This depends on your project structure.
      I don't know what kind of HMI you are using (WebBuDi, HMI Designer, or custom) but basically, you have to add

      <script>
      REX.HMI.init = function(){
        REX.HMI.addItem({alias:"ALARMS", cstring:"task.alarm_block_or_subsytem:parameter"}).on('change',function(itm){
          let index = itm.getValue();
          /* HERE you have to pick the <li> or  other element of you menu*/
          let elem = // Some jQuery or document.queryselector magic
          elem.style.backgroundColor = 'red';
        })
      }
      </script>
      

      If you are using HMI Designer, you can follow the example 0301-10_Custom_HMI_Component

      or you can read Chapter 5 of the HMI manual
      BR
      Ondrej

      posted in REXYGEN HMI Designer
      ondrej_severa
      ondrej_severa
    • RE: $ sign missing in Group animation (HMI designer)

      Hello,
      thank you for pointing this out. It will be fixed in the next release. It was a small typo.
      Best regards
      Ondrej

      posted in Bug reports
      ondrej_severa
      ondrej_severa
    • RE: Replacing typed characters for "***" while typing a password

      Yes this feature is already included in your pre-release version. Just use HMI Designer and use Input component. You have to change format to password.
      Best regards
      Ondrej

      posted in REXYGEN HMI Designer
      ondrej_severa
      ondrej_severa
    • RE: Replacing typed characters for "***" while typing a password

      Hi Peter,

      the feature is now available in pre-release version 2.50.10-r5. Do you want to try it out or better wait for public release version?

      Regards, Ondrej

      posted in REXYGEN HMI Designer
      ondrej_severa
      ondrej_severa
    • RE: Replacing typed characters for "***" while typing a password

      Hello Peter,
      so far this feature is not available yet, but it will be soon. Just little recommendation. If you are about to use passwords in your HMI I strongly recommend to switch from HTTP to HTTPS protocol.
      Just visit the https//: 127.0.0.1:8009 (mind the different port) and your communication between web browser and REGYGEN web server will be encrypted.

      Best regards,
      Ondrej

      posted in REXYGEN HMI Designer
      ondrej_severa
      ondrej_severa
    • RE: dygraphOptions dateWindows

      Hello Peter,
      we are using dateWindow function during trend refresh. Thus every time we get a new data the time widow is adjusted. So you are not able to use this attribute for custom default zoom. I suggest to follow the @cechurat recommendation and create a 3 hour trend.

      Best regards,
      Ondrej

      posted in REXYGEN HMI Designer
      ondrej_severa
      ondrej_severa
    • RE: Cannot compile in the new version of Rexygen Studio 2.50.8

      Hello @sadilekivan ,
      this issue was caused by unknown bug in the hashing algorithm during the HMI build process. This will be fixed in next version of our software. Thank you for the bug report.

      Best regards
      Ondrej

      posted in Bug reports
      ondrej_severa
      ondrej_severa
    • RE: Cannot compile in the new version of Rexygen Studio 2.50.8

      It seems that configuration of the HMI Designer is OK. Please check if HMI can be generated from the HMI Designer.

      • Delete the hmi directory
      • Open your index.hmi.svg
      • Generate the HMI using Ctrl+H
      • Check if hmi directory with index.html file was generated

      If this passed the problem is in the utility which calls the HMI Designer generator during compilation process in the Studio. I must prepare some better version of the script which will give us the detailed information about the error you receive.

      posted in Bug reports
      ondrej_severa
      ondrej_severa
    • RE: Cannot compile in the new version of Rexygen Studio 2.50.8

      Hello @sadilekivan ,
      I have a few questions. Can you check them for me.

      1. Are you able to compile the project without HMI on you laptop? Just uncheck the GenerateRexHMI in the HMI block. And compile it again.
      2. Are you able to build the HMI using HMI Designer?
      • Open the index.hmi.svg file in the REXYGEN HMI Designer tool.
      • Open REXYGEN HMI Configuration using CTRL+E shortcutn with no selection
      • In HTML export tab check Expert mode and change Output filename parameter to ../hmi/index.html
      • Close the dialog using OK button
      • Then press Ctrl+H for HMI generation from the HMI Designer.
      1. In HMI Designer check the python version and version of the libraries using Exensions -> REXYGEN HMI -> Version Info

      2. What is you Windows version?

      Thank you for your input,
      Best regards
      Ondrej

      posted in Bug reports
      ondrej_severa
      ondrej_severa