Reporting an artifact's parent in XSL

Wednesday, March 17, 2021
Avatar

Hello: I am wondering if someone can help me identify the appropriate property name of a Requirement that would allow me to report the requirement's parent (in XSL)?

Thanks

-Ed

 

1 Replies
Wednesday, March 17, 2021
Avatar
re: elandau Wednesday, March 17, 2021

Is this something like that?

<xsl:for-each select="Requirements/ArtifactLink">
  <xsl:if test="position() > 1">
     <xsl:value-of select="ArtifactName"/>,<br />
     <xsl:value-of select="ArtifactLinkTypeName"/>
  </xsl:if>
</xsl:for-each>

 

Spira Helps You Deliver Quality Software, Faster and With Lower Risk

And if you have any questions, please email or call us at +1 (202) 558-6885

 

Statistics
  • Started: Wednesday, March 17, 2021
  • Last Reply: Wednesday, March 17, 2021
  • Replies: 1
  • Views: 2213