Subject:XSLT Parameter Values dialog not showing any entries Author:David Lee Date:31 Dec 2009 09:55 AM
Using SS 2010, Build 1540b.
I have a XSLT file with parameters.
When I use the Scenario Properties Dialog, Parameter Values tab,
none of the XSLT parameters are showing up so I cannot enter values for parameters. The dialog is entirely empty (contains only the header labels but no rows for parameters)
The main XSLT file is :
<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:v3="urn:hl7-org:v3" exclude-result-prefixes="v3 xsl">
<xsl:import href="spl-common.xsl"/>
<xsl:param name="doc_uri" select="/.."/>
<!-- Whether to show the clickable XML, set to "/.." instead of "1" to turn off -->
<xsl:param name="show-subjects-xml" select="/.."/>
<!-- Whether to show the data elements in special tables etc., set to "/.." instead of "1" to turn off -->
<xsl:param name="show-data" select="1"/>
<!-- This is the CSS link put into the output -->
<xsl:param name="css">./spl.css</xsl:param>
<!-- Whether to show section numbers, set to 1 to enable and "/.." to turn off-->
<xsl:param name="show-section-numbers" select="/.."/>
<xsl:output method="html" version="4.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
</xsl:transform>