Behaviors locks field from editing

John Lint October 9, 2014

I am using Behaviors to automatically add a user to a custom field from another custom field in a workflow transition.  The issue that I am having is that it will pre-populate the issue (correct) but if I want to modify the value after that, it does not let me and just overwrites it with the previous value.  

Is there a configuration that I can make to allow me to modify the value?

1 answer

0 votes
JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 9, 2014

You need to put that behaviour not on the field that's being prepopulated, but on the field that it's getting it's value from. By default it fires everytime it's edited, which explains why it gets overwritten.

If you want to only populate it if it's empty you have to handle that in code, eg:

if (! targetField) { copy from source field }

Suggest an answer

Log in or Sign up to answer