I
think I did something similar with a stylesheet. I'm not sure if this is
quite what you want, but here's what I did:
I had
a logicsheet that used esql which results in xml like
this:
<row>
<pin>11111</pin>
<other_info>info</other_info>
<more_info>more</more_info>
</row>
<row>
<pin>21111</pin>
<other_info>info2</other_info>
<more_info>more2</more_info>
</row>
This
was to go in a table like:
PIN
Info
More
1111
info
more
2111
info1 more2
where
each entry in the pin column is a link to more detail for that
pin
I made
the table rows and the links with this xsl stylesheet:
---------------------------------------------------------------------------------
<!-- Format each row of a generic Data Table
-->
<xsl:template match="row"> <tr> <xsl:for-each select="./child::*"> <xsl:choose> <!-- make pin column a link to the person data page --> <xsl:when test="name()='pin'"> <td align="right"> <a> <xsl:attribute name="href"> <xsl:value-of select="concat('form_person_data_input.html?xlpin=',.,'&constraint=&stylesheet=person_data')"/> </xsl:attribute> <!-- text that will be the link --> <xsl:value-of select="." /> </a> </td> </xsl:when> <xsl:otherwise> <td align="right"><xsl:value-of select="." /></td> </xsl:otherwise> </xsl:choose> </xsl:for-each> </tr> </xsl:template> -----Original Message----- From: Georg Spar [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 9:03 AM To: [EMAIL PROTECTED] Subject: problem with dynamic parameters in XSP + ESQL
|
- problem with dynamic parameters in XSP + ESQL Georg Spar
- Re: problem with dynamic parameters in XSP + ESQL Christian Haul
- Re: problem with dynamic parameters in XSP + ESQL Georg Spar
- Re: problem with dynamic parameters in XSP + E... Christian Haul
- Naquin, Beth