i am attempting to set two values in an custom app using the interface trigger “SetValue” butit is updating a different field
here is the code
client.interface.trigger(“setValue”, {id: “cf_alertresolved”, value: “Yes”})
client.interface.trigger(“setValue”, {id: ‘alertresolved’, value: true})
both of these calls are updating the same field even though there are two
these to fields in the json for the ticket are
{
“alertresolved”: false,
“cf_alertresolved”: “No”
}
alertresolved is a check box
cf_alertresolved is a drop down list
any idea why the different field ids are affecting the same field