Hi,

i need in my xsl an expression like that: id={concat(@id,../@id)}
because i must combine the unique one with not unique one, so i get a unique 
combination.

I hope i expressed myself not so confused.

Thanks and best regards,
Sven


So looks my xml/xsl at the moment:

XML:

"case id" is always unique.
"auto id" is not always unique.
----------------------
<case id="1">
        <auto id="91">
        </auto>
        <auto id="92">
        </auto>
        <auto id="91">
        </auto>
</case>



<case id="2">
        <auto id="81">
        </auto>
</case>


XSL:
----------------------
<template match="case">
..
        <fo:block id="[EMAIL PROTECTED]">auto</fo:block>
...
...
        <fo:basic-link internal-destination="[EMAIL PROTECTED]">
                Hyperlink: Jump with this link to auto...
        </fo:basic-link>
...
...


</template>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to