Change field in nodeset xslt

48 Views Asked by At

I have some xslt template witch applies an other one with nodeset. But I want to change one field there without retouching any others. Just an example code:

<xsl:variable name="item" select="menu-dish/entry/price -1" />
    <xsl:apply-templates select="menu-dish"  mode="menu_dish_information"/>

Where menu-dish is my nodeset and $item is just my attempt to change price field in it. But the problem is that I can show the variable on a screen but it is only changed price field and with no other data and plus it is not a nodeset. I don't have a direct acess to xml because using somethin called Symphony CMS. So the idea is to pass all data to a template as it is changing price field. How can I do it?

0

There are 0 best solutions below