how i can test if agreement/status = 4 and agreement/teexpirydateday is empty or not. status datatype is tinyint and teexpirydateday is datename. I have try many statement as below but it's not work
<xsl:when test="agreement/status = 4 and agreement/teexpirydateday">
<xsl:when test="agreement/status = '4' and not(agreement/teexpirydateday)">
<xsl:when test="agreement/status = '4' and normalize_space(agreement/teexpirydateday) = ''">
<xsl:when test="agreement/status = '4' and agreement/teexpirydateday = ''">
No comments:
Post a Comment