| brian on Jun 15, 2007 at 1:04:44 AM (# 1) You would use some xsl to transform the data
there's tags like <xsl:value-of select="divWidth" /> for example so it would look roughly like:
<xsl:template match="info"> <div style="width:<xsl:value-of select="divWidth" />px;height:<xsl:value-of select="divHeight" />px;"> <xsl:value-of select="name" /> </div> </xsl:template>
This may not be 100% correct but it is roughly the kind of thing you would do. Hope this helps at least. moja on Sep 1, 2007 at 4:12:46 PM (# 2)Thanks for the info ! speed on Dec 1, 2007 at 11:23:36 AM (# 3)i had the same problem. thanks speed http://tech-unite.com/forum/viewtopic.php?f=5&t=10
|