xsl-list
[Top] [All Lists]

Re: [xsl] Convert XML to Excel using XSLT Question II.

2006-06-20 13:01:20
Hi,

Beside the question I had in my previous email, here comes another
one. Since I've been struggling on this for quite some days and the
deadline is coming, I'd greatly appreciate it if you could help me
out....

what does the "." do? i.e. I don't understand what the following does?
especially the "." part, and without apply-template, how this code
would be called?

<xsl:template 
match="TAX_CASH_FLOW_ANALYSIS/TaxCashFlowUnit/TaxCashFlowDetail/*">
 <Cell><Data ss:Type="String">
   <xsl:value-of select="."/>
 </Data></Cell>
</xsl:template>


You may only want to do something with the content of the current node in
which case you would use
<xsl:value-of select ="."/>. ... something like your cell below.


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--