New Control Parameters

New Application Constants

The default.constants.js file is located in the apq-c3-custom/js folder within the web app directory of the root install directory of your Apliqo Application server. This file stores default constants for the Apliqo UX application. 

The 2022.06 version includes an update of number format:  

Changed from:  

'NUMBER_FORMAT': '#,###;(#,###);0;-'

To:

 'NUMBER_FORMAT': '#,##0;(#,##0);0;-' 

New Rest API Paths

The settings.json file is located in the WEB-INF/config folder within the web app directory of the root install directory of your Apliqo Application server. This file stores control parameters used by the Apliqo UX application. 

The 2022.06 version includes an update to the allowedRestPaths array:  

If missing the following lines need to be added within allowedRestPaths

   {
         "path": "/Annotations.*",
         "method": "GET"
   },
   {
         "path": "/Annotations(.*)",
         "method": "DELETE"
   }

New Advanced Options

Version 2022.06 includes the following new advanced options to control the features and behavior of Widgets in UX applications.

TI Process

"drawer": Set to true to display the TI Process status (running, success, failed) in the new Notifications window 

{
  "process": {
    ...
    "statusNotifications": {
      "running": {
        "drawer": {
          "enabled": true
        }
      },
      "success": {
        "drawer": {
          "enabled": true
        }
      },
      "failed": {
        "drawer": {
          "enabled": true
        }
      }
    }
  }
}
Click to copy

Running:

Success: 

Failed:

Charts

"chartsTooltipShowPercentage": set to true to change the formatting in the chart to %

{
  "chartOptions": {
    "chartsTooltipShowPercentage": true
  }
}
Click to copy

NOTE:

Chart Show Percentage replaces two options which were available so far (shown in the screenshot below) and changes the way values are calculated and presented in charts. 

View Settings

"toolbarHiddenWhenPrinting" : set to true to hide the filterbar when exporting to pdf 

{
  "toolbarHiddenWhenPrinting": true
}
Click to copy

0 Comments

Add your comment

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.