Display Tree like nodes to TwinCAT HMI

Display Tree like nodes to TwinCAT HMI

The HTML Host control displays an HTML page from a given URL or a local file. The associated HTML page can be static or dynamic by using JavaScript (embedded or external). The HTML Host control can be used to display a rich user interface package by leveraging the power and expressiveness of WebUI (HTML, CSS, JavaScript).

The sample example is like this, you select a node from the left-hand side and in the text block, we display the name of the selection. There is also an image file where we display an image to identify the changes visually. By this, we can select a device-specific page or content depending on the context. On the left-hand side, we have a tree-like data structure. If we select an item then we display the component name (in a text block) and an image.

In TwinCAT HMI Engineering, we can insert an HTML HOST control and insert a DIV element.

The <div> tag defines a division or a section in an HTML document. The <div> tag is used as a container for HTML elements – which is then styled with CSS or manipulated with JavaScript. The <div> tag is easily styled by using the class or id attribute. Any sort of content can be put inside the <div> tag! 

How to design the HMI

In TwinCAT Engineering, the HTML host is a container for HTML contents where the control can be edited in the HTML editor of the Designer.

=> Fire Visual Studio and create an HMI project by using the default template (if first time check out how to start at https://www.hemelix.com/scada-hmi/twincat-hmi/twincat-hmi-installation/)

=>Create a folder in the solution explorer of the project, rename the folder as JSTree.

=> Download JSTree from the site https://www.jstree.com/  and extract it somewhere.

=>Create a folder in the solution explorer of the project, rename the folder as JSTree.

=>Bring the toolbox visible (View | toolbox  or Control + Alt + x)

=>Drag and Drop HTML Host control from the toolbox to Desktop view

=>Resize border, reposition, etc based on your imagination

=>Drag and drop Textblock control and an image control and position those to right side of the HTML HOST control

=> Make sure that the Identifier (ID) of the text block and the image control matches as TcHmi_Controls_Beckhoff_TcHmiTextblock and TcHmi_Controls_Beckhoff_TcHmiImage respectively.

=> Add a few images to the images folder based on your wishes, you can copy the project and extract the images and insert them to the folder (just for practice)

=> Make visible the Desktop.view HTML code for editing (In the Desktop.view slowly move your mouse below the default toolbar on the right side  and make the editor bigger or press on the swap code/design view icons)

=>Find the TcHmi_Controls_System_TcHmiHtmlHost  DIV block and insert the following code below the DIV block (see the image below as well)

      <script src="JSTree/jstree.min.js"></script>
      <link rel="stylesheet" href="JSTree/themes/default/style.min.css" />
      <div id="using_json_2" class="demo" style="margin-top:2em;"></div> 

 

=> Create a script section and insert the following code, compile and test, you are DONE!

The related JavaScript code:

 

      <script>
          $(function () {
          $('#using_json_2').jstree({
              'core': {
                  'data': [
                      { "id": "ajson1", "parent": "#", "text": "Single Machine" },
                      { "id": "ajson2", "parent": "#", "text": "Another Machine" },
                      { "id": "ajson3", "parent": "ajson2", "text": "Component 1" },
                      { "id": "ajson4", "parent": "ajson2", "text": "Component 2" },
                      { "id": "ajson5", "parent": "ajson2", "text": "Component 3" },
                  ]
              }
          });
              $('#using_json_2').on('changed.jstree', function (e, data) {                  
                  var i, j, r = [];
                  for (i = 0, j = data.selected.length; i < j; i++) {
                      r.push(data.instance.get_node(data.selected[i]).text);
                  }
                  var selection = r.join(', ').toString();                  
                  var targetControl = TcHmi.Controls.get("TcHmi_Controls_Beckhoff_TcHmiImage");
                  var targeTexttControl = TcHmi.Controls.get("TcHmi_Controls_Beckhoff_TcHmiTextblock");
                  if (targeTexttControl != undefined) {
                      targeTexttControl.setText(selection);
                  }
                  var defaultImage = 'Images/bulbimage.svg';
                  if (selection == "Single Machine") {
                      defaultImage = 'Images/automation.svg';
                  }
                  if (selection =="Another Machine") {
                      defaultImage = 'Images/Beckhoff_Logo.svg';
                  }
                  if (selection=='Component 1') {
                      defaultImage = 'Images/theremometer.svg';
                  }
                  if (selection == 'Component 2') {
                      defaultImage = 'Images/close_normal.svg';
                  }
                  if (targetControl != undefined) {
                      targetControl.setSrc(defaultImage);
                  }
              })
              .jstree();
          });
      </script>

 

 

Down load the complete working source code TcHmiProjectTree_Hemelix.zip

Download the sample from the link given above.

Next, let’s try to understand how to develop HMI extension at https://www.hemelix.com/scada-hmi/twincat-hmi/twincat-hmi-server-extension/

Ask questions related to Hemelix sample code and design at Google group https://groups.google.com/g/hemelix