I have a query related to xsl selection, inside xsl select is used Now I have two xsl: when the condition is there, like hsown below
<xsl:choose> <xsl:when test=$labcVar=$cde> <xsl:when test="$erf=$der"> <xsl:value-of select="'edr'" /> </xsl:when> <xsl:otherwise> <xsl:value-of select="'fre'" /> </xsl:otherwise>
please advise if the approach is correct, since insise xsl: when .. I need to start only when the condition becomes true first, I should go only for the second xsl: when the condition, please advise that it is aloowed or not
user2439099
source share