by parsing the above xml file, i am trying to see the xsl that checks the valve between "<value>required</value>" and print a *
I am writing the following if statement to parse upto the value:
<xsl:if test="/value/item[@name='Predefined_Field']/value/item[@name='min']/value/item[@name='max']/value/item[@name='size']/value/item[@name='required']/value = 'required'">
<xsl:text>* </xsl:text>
</xsl:if>
could you please help me how to read the value and print a * if the value is 'required'.