This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: testing child elements for text


[CROFT, MICHAEL]

> I need to see if an element has children that contain data....
>
> <InsClaimsAdverseClaimantContact Id="1-16J9D">
> <ListOfAmicaContactServiceProvider/>
> <ListOfInsClaimsAdverseClaimant/>
> </InsClaimsAdverseClaimantContact>
>
> What is a way to test if the parent element has any children that actually
> have data?  I will only process the parent if it has children that contain
> data.
>

<xsl:apply-templates
    select='InsClaimsAdverseClaimantContact[*]'/>

You might want to look at Michael Kay's post from a few hours ago (subject:
RE: [xsl] Best practices), too.

Cheers,

Tom P


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]