[Home] [By Thread] [By Date] [Recent Entries]
Now I'm not sure what I want : )
Your logic, as you have explained makes real good sense. Now looking at this:
I'm feeling stuck but usually there is a way to get this done... let me explain this another way: In a single source of XML I have a FIELDS/FIELD lookup, where there are many FIELD elements which may or may not have a flg attribute who's value maps to an attribute of the same name in a row element. The value of this attribute determines whether or not to include the FIELD element in the result. So, I'll expand a little with my XML: <root> <fields> <field name="Name" flg="flgName"/> <field name="HomeTown" flg="flgHomeTown"/> <field name="Country" flg="flgCountry"/> </fields> <result> <row flgHomeTown="1" flgCountry="0" flgName="0"/> <row flgHomeTown="1" flgCountry="0" flgName="1"/> </result> </root> The context would be row, and for each row, I need the corresponding field elements in a variable $drvr. <xsl:template match="row"> <xsl:variable name="drvr" select=" ... return field elements for each attribute of row which maps to the field collection and is = 1 (this probably just confuses the objective, but i think you know what i mean) ... </xsl:template> On 1/7/07, David Carlisle <davidc@xxxxxxxxx> wrote:
|

Cart



