xsl-list
[Top] [All Lists]

Re: [xsl] Displaying Element Values - basic ?

2007-01-03 09:24:52
Did you try:

<td><xsl:value-of select="."/></td>

-Lou

patterj(_at_)twcny(_dot_)rr(_dot_)com wrote on 01/03/2007 11:13:44 AM:

Forgive me if this posted already.

I'm having trouble pulling the value of an element, I want to read the
value of element <Assignment>. I can't figure out how to do it, even
though it's extremely basic. I'm using the W3C xslt tutorial and they
really don't have anything on how to do this, using my format. I would
like to keep my xml structure, because this is easy to read format and
it's generated dynamically by a PHP application. Can anyone give me a 
tip?

xml:
        <Assignments>
                <Assignment duedate = "1/21/07" assigned =
"1/02/07">Read Ch.3</Assignment>
                <Assignment duedate = "1/30/07" assigned =
"1/02/07">Test Ch. 3</Assignment>
        </Assignments>

My current XSLT:
        <xsl:for-each select="Assignments/Assignment">
                <tr>
                        <td><xsl:value-of select="@DateDue"/></td>
                        <td><xsl:value-of select="@DateAssigned"/></td>
                        <!-- Not going to pull the value -->
                        <td><xsl:value-of select="Assignment"></td>
                </tr>
        </xsl:for-each> 

--~------------------------------------------------------------------
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>
--~--



--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>