Hope my explanation is clear..

Here are the XML elements

<element name="LastTimeBuyDate" type="dateTime" nillable="true"/>
<element name="LastTimeDeliveryDate" type="dateTime" nillable="true"/>

What I am trying to do in XSLT is state that when the lasttimebuydate is empty to add the "nillable="true"" to the xml output... same thing for lasttimedeliovery date

<cim:LastTimeBuyDate><xsl:value-of select="ecim:LAST_TIME_BUY_DATE"/></cim:LastTimeBuyDate>
<cim:LastTimeDeliveryDate><xsl:value-of select="ecim:LAST_TIME_DELIVERY_DATE"/></cim:LastTimeDeliveryDate>

Anyhelp would be great

basically I want the xsl to add an xsi:nil="true" to the xsl value of select so output could be something like

<LAST_TIME_BUY_DATE xsi:nil="true"/>

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.