Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. markgravitygood

    Apply templates problem

    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...
  2. markgravitygood

    Apply templates problem

    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...
  3. markgravitygood

    [text()= or [.= ???

    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...

Part and Inventory Search

Back
Top