Subject: Re: repeating/portal fields in filemaker FMPXMLRESULT?
From: Eric Scheid <eric.scheid@xxxxxxxxxxxxxxx>
Date: Fri, 09 Dec 2005 21:26:48 +1100
|
On 9/12/05 7:56 PM, "Michael Kay" <mike@xxxxxxxxxxxx> wrote:
> <xsl:variable name="p" select="position()"/>
> <xsl:value-of select="ancestor::row/col[3]/data[$p]"/>
thanks, that worked - once I remembered to put the namespace prefix in...
<xsl:variable name="p" select="position()"/>
<xsl:value-of select="ancestor::fmp:ROW/fmp:COL[3]/fmp:DATA[$p]"/>
e.
|