JS Client API
  • Getting Started
  • Rule Engine Unique Functions
  • Custom Form Window Functions
  • Known Issues
  • Use Cases & Code Samples
  • Retrieving Data
    • Retrieving Standard Resources
    • Retrieving User Defined Tables
    • Retrieving Attachments
    • Retrieving Items in Transaction Scope
    • Retrieving Transaction Lines
    • ADAL
  • Updating Data
    • Adding Objects to Standard Resources
    • Updating Standard resources
    • Updating User Defined Table
    • Updating Items in Transaction Scope
    • Adding Transaction Lines
    • Removing Transaction Lines
Powered by GitBook
On this page

Was this helpful?

Known Issues

Validation

Currently the Client API is not doing validation for the following fields :

Rule engine does not support arrow functions:

Example:

var arr = [a,b,c,d];
arr.forEach(function(x) {alert(x);});

Example of unsupported code:

var arr = [a,b,c,d];
arr.forEach(x => {alert(x);});

Rule engine does not support let/const variable types:

Example:

var a=1;
var b=2;

Example of unsupported code:

let a=1;
const b=2;
PreviousCustom Form Window FunctionsNextUse Cases & Code Samples

Last updated 5 years ago

Was this helpful?