More info pseudo-code. I am trying this and it does not work:
<xsl:apply-templates select="CLAIMS/CLAIM"/>
</body>
</html>
</xsl:template>
<xsl:template match="CLAIMS/CLAIM">
... More stuff here that renders fine ...
... This apply-templates breaks it. If I remove this, the CLAIM section...
My XML:
<CLAIMS><CLAIM>
<SERVICE_LINE>
</SERVICE_LINE>
<SERVICE_LINE>
</SERVICE_LINE>
<SERVICE_LINE>
</SERVICE_LINE>
<SERVICE_LINE>
</SERVICE_LINE>
<SERVICE_LINE>
</SERVICE_LINE>
</CLAIM>
</CLAIMS>
MY apply-templates code for the CLAIMS/CLAIM level works fine, but I cannot get the...
Ok, Which is the correct way to handle this xsl:
<xsl:when test="CARRIER_REFERENCE[text()!='610442']">
Do Something
</xsl:when>
OR
<xsl:when test="CARRIER_REFERENCE[.!='610442']">
Do SOmething
</xsl:when>
I have seen it work one way or another, and need to know and understand what thye...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.