Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This API sets field values using the properties of a JavaScript object properties.

Each object property that has a matching declared field is used to set the field value.

Parameters

...

  • primitive JavaScript object

Example

Code Block
languagejavascript
// Retrieve data into a record object by querying a table using product id
var record = pjs.query("SELECT * FROM productsp WHERE prid = ?", prid, 1);

// Set matching global declared fields, including any screen fields
pjs.setFields(record);
 
// Display the screen
display.myform.execute();
 
// Retrieve user input back into the record object
record = pjs.getFields(record);

Video Tutorial