Assign a Umbraco Property/Field to a Vairable / IF statement / Testing the Value of a Umbraco Dropdown selction Box
The Following code
a) Assigns a Variable "selectedValues" with the value of the umbraco Field "specialityList"
b) Uses an If statment to Tests the Value of the Vairiable (the value is assignd by the user in Umbraco from a dropdown/combo box)
c) The Umbraco function "contains(...,..)" test the value.
<xsl:variable name="selectedValues" select="$currentPage/specialityList"/>
<xsl:if test="contains($selectedValues, 'AHP')"> do something </xsl:if>
a) Assigns a Variable "selectedValues" with the value of the umbraco Field "specialityList"
b) Uses an If statment to Tests the Value of the Vairiable (the value is assignd by the user in Umbraco from a dropdown/combo box)
c) The Umbraco function "contains(...,..)" test the value.
<xsl:variable name="selectedValues" select="$currentPage/specialityList"/>
<xsl:if test="contains($selectedValues, 'AHP')"> do something </xsl:if>
Comments
Post a Comment