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 Mike Lewis 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. pr698er

    Tag Name

    <xsl:template match="NAME"> <xsl:value-of select="name()"/> <xsl:text>:&#160;</xsl:text> <xsl:value-of select="."/> </xsl:template>
  2. pr698er

    CSS and XSL?

    File: importStylesheet.xsl <?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;yes&quot;?> <xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&quot;1.0&quot;> <xsl:template name=&quot;javascript&quot;> <SCRIPT...
  3. pr698er

    Only one row returned from XML file

    XML-File ?? Give an example.
  4. pr698er

    XSLT Grouping

    Try this: <?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot; standalone=&quot;yes&quot;?> <xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&quot;1.0&quot;> <xsl:output method=&quot;html&quot; indent=&quot;yes&quot; encoding=&quot;iso-8859-1&quot...
  5. pr698er

    XSL and preceding-sibling question

    Try it at first with value-of and look what you're getting: <xsl:value-of select=&quot;../preceding-sibling::TYPDET[1]/@typ/> <xsl:value-of select=&quot;../@typ&quot;/> after that compare it in a test of xsl:when.
  6. pr698er

    xsl for-each select with filter for field with currency

    &38;lt; or &38;gt;
  7. pr698er

    xsl for-each select with filter for field with currency

    <xsl:for-next select=&quot;ProductInfo/Details[number(substring-after(UsedPrice,'$')) &gt; 3.00 and Media=&quot;Paperback&quot;]&quot;> don't use < > inside <xsl:.... > try it with &gt; or &lt;

Part and Inventory Search

Back
Top