Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The value I am getting for sp_sign(given below) I want to use it as src for fo:external graphic . I tried many things still no luck please help.

    <xsl:for-each select="//**sp_sign**">
    <xsl:value-of select="**@value**" />

//

<xsl:variable name="src" select="//sp_sign" />
<fo:external-graphic baseline-shift="super" **src="${src}"** content-height="80px" content-width="80px"/>
</fo:block> 

Thanks in advance Regards, Manik Vashisht

share|improve this question
Yes a lot Varun. :P – user1553912 Jul 26 '12 at 8:41
w3schools.com/xsl/el_variable.asp try this – Varun Jul 26 '12 at 8:42

1 Answer

I normally give the src attribute using the xsl:attribute tag

<fo:external-graphic>
      <xsl:attribute name="src">
             <xsl:value-of select="$src" />
       </xsl:attribute>
</fo:external-graphic>

the src should look like: url('path/to/image')

share|improve this answer
It's a lot cleaner to use an AVT (w3.org/TR/xslt#attribute-value-templates). Example: <fo:external-graphic src="{$src}"/> – Daniel Haley Feb 15 at 13:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.