unable to render a bullet list in xsl

mamyImmityRok

New Member
i am not being able to render a bulleted list through xml/xsl transformation. I want the output to be a list with round bullet points.here is the xml file - \[code\]<bulletList name="list"> <item>• Item1</item> <item>• Item2</item> <item>• Item3</item> <item>• Item4</item> <item>• Item5</item></bulletList>\[/code\]here is the corresponding XSL - \[code\]<div class="sansIcon"> <xsl:apply-templates select="content[@name='con1']" mode="impl_expandContent"/> <ul> <xsl:apply-templates select="bulletList[@name='list']" mode="impl_expandContent"> <xsl:for-each select="item"> <li><xsl:value-of /></li> </xsl:for-each> </xsl:apply-templates> </ul> </div>\[/code\]Please help! Thanks in advance.
 
Back
Top