This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: need to show spaces


Hi everyone,
         I am facing a problem with XSL.

I have in my XML
<a>
  <b val="11      22      33     44    55"></b>
  <b val="aa      bb      cc     dd    ee"></b>
  <b val="12      12      12     12    12"></b>
  <b val="44      55      66     77    88"></b>
</a>

in my XSL i have
   <table>
      <xsl:for-each select="a/b">
      <tr>
        <td><xsl:value-of select="@val"/></td>
      </tr>
      </xsl:for-each>
    </table>

the output does not shows the spaces as they are. It just shows one space 
gap between them. I want the string to appear as it is without any 
formatting(trimming).

I have put
<xsl:preserve-space elements="a"/> in the XSL but doesnt make a diff.

whats the way to overcome this problem?

all help is appreciated
thanks in advance

regards,
Anurag


_________________________________________________________________
Join the world’s largest e-mail service with MSN Hotmail. 
http://www.hotmail.com


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]