Hi,
I'm using Confiforms to create an intake form in Confluence to create JIRA issues. One of the fields is a Smart Dropdown field referencing a Confiform Table on another page (sub-page of the main page).
The dropdown correctly shows the options and allows you to select the product. The Stored Data of the form correctly records the product selected, but when it is passed to JIRA in the JSON code it passes the Confiform generated Row ID 8693080a-bec3-4c8c-9708-337f50b24ede
Is there a Virtual Function or other code I need to put on the end of the variable when passing it through JSON? Currently this is the code: [entry.ImpactedProducts.escapeJSON]
Thanks.
You will need to have the actual codes your JIRA expects stored in the form which your ImpactedProducts field references.
This way you will need to change the reference to your smart field to actually take that other field from a target form
[entry.ImpactedProducts.<HERE_GOES_THE_FIELD_NAME_OF_THE_FIELD_IN_REFERENCED_FORM_WHICH_HOLDS_THE_ID_YOUR_JIRA_UNDERSTANDS>]
Having your [entry.ImpactedProducts] get's you actually the internal ID (UUID) of the record referenced (from that other form your smart field takes the values from)
It should look like this...
[entry.ImpactedProducts.{fieldnamefromsmartform}.escapeJSON]
So using the below screen shot as an example if the field in the smart form you were connecting to was called thing your entry text would look like this...
[entry.ImpactedProducts.thing.escapeJSON]
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.