In following template call
<xsl:call-template name="My_Class">
<xsl:with-param name="className" select="getClassName()"/>
<xsl:with-param name="baseClassName" select="??????"/>
</xsl:call-template>
i have to call My_Class template with value of second parameter i.e. baseClass as user defined. i.e. suppose i want call this template by passing value of second argument(shown as ???? in above code) as “balaji”.
Any suggestion on above? Thanks in advance.
If you want to pass a parameter as a fixed, you can just do something like this:
Alternatively, you could specify the value as a default value in the template itself
Is this what you are were looking for?