HELP!

setValues

Set Viabl Platform Object values via the passed JavaScript Object.

xpertrule.setValues(valueObject);

The format of the valueObject is the same as the Object returned by the getValues method.

for example:

var valueObject = {
    "Name": {
        "_value": "John Smith"
    },
    "DateOfBirth": {
        "_value": "1988-11-08T00:00:00.000Z"
    },
    "Grade": {
        "_value": "Manager",
    },
    "MonthlySalary": {
        "_value": 3000
    },
    "PermanentContract": {
        "_value": "Yes"
    }
};
xpertrule.setValues(valueObject);
Viabl Platform Date Object values for getValues and setValues are specified as a string in **ISO 8601** date format

The above Object format is designed to include any Object property and List property values generated by the getValues method. The setValues method can be used to set Object property values but can not set List property values.

If only Object values are being set (with no property values) then the following alternative shorthand format can also be used for the Object passed to the setValues method

var valueObject = {
  	  "Name": "John Smith",
          "DateOfBirth": "1988-11-08",
	  "Grade": "Manager",
	  "MonthlySalary": 3000,
	  "PermanentContract": true
};
xpertrule.setValues(valueObject);

On This Page