EMBED.submitTarget (field, value)

This method sends data from your plug-in back to an Operations Hub data target.

For example, your plugin has a text entry value, and you want to send that value back to a SQL data source via an Operations Hub query.

Parameters

(JSON Object) field

(variant) value

Return Value

None

Example

let data = EMBED.getComponent().schema.data;
let outputValue = data.outputValue

function updateOutput(value)
{
  // Push the value from the Plugin back to Operations Hub
  //
  EMBED.submitTarget(outputValue, value);
}

updateOutput(‘new value’);