Hi,
I'm brand new to using Xporter so excuse this probably simple question. I am using the below in my template to bring back the linked issue key but if there is no linked issue I want to default to a string 'n/a'. Can anyone advise the syntax to use for that please?
#{for links}
${Links[n].Key}
#{end}
Xporter has a programming language that can help you code some behaviors.
For instance, o achieve what you want, it is necessary to add two conditions: print N/A when the links count is zero and print the Keys when the links count is different from zero.
Here is an example:
#{if (%{"${LinksCount}".equals("0")})}
N/A
#{end}
#{if (%{!"${LinksCount}".equals("0")})}
#{for links}
${Links[n].Key}
#{end}
#{end}
Please check the Xporter documentation here (https://confluence.getxray.app/display/public/XPORTERCLOUD/Conditional+Blocks) for the details on conditional blocks. And also, please explore all the documentation to get a view of all the features. Since you are starting to use Xporter, I would advise you to do the Xporter Academy to train and learn how to use the tool (https://confluence.getxray.app/display/public/XPORTERCLOUD/Xporter+Academy).
Any additional questions, please get in touch with Xporter Support (http://Xportersupport.getXporter.app); we would gladly assist you.
Thank you.
Kind regards,
Rogerio Paiva [Xporter Support Team]
That's fantastic - thanks for your help Rogerio!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.