I have a bunch of <field/> elements who all contain the attribute
name. How do I set up a key to return the field element passing given
name?
I've tried this, but doesn't seem to work:
<xsl:key name="key_fld" match="field" use="name()"/>
I've also tried:
<xsl:key name="key_fld" match="field" use="@*[name()]>
Thanks for the help.
--~------------------------------------------------------------------
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>
--~--