treeprompts.xsl 894 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: CCS
  5. (c) Copyright IBM Corp. 2005, 2010
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <xsl:stylesheet version="1.0" xmlns:rds="http://developer.cognos.com/schemas/rds/types/2" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  9. <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
  10. <xsl:template match="/">
  11. <rds:treePromptNode>
  12. <xsl:for-each select="./selectOptions/selectTreeOption">
  13. <rds:options>
  14. <rds:useValue>
  15. <xsl:value-of select="@useValue"/>
  16. </rds:useValue>
  17. <rds:displayValue>
  18. <xsl:value-of select="@displayValue"/>
  19. </rds:displayValue>
  20. </rds:options>
  21. </xsl:for-each>
  22. </rds:treePromptNode>
  23. </xsl:template>
  24. </xsl:stylesheet>