Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
<xsl:template name="BulletsCustom" match="Row[@Style='BulletsCustom']" mode="itemstyle">
    <div class="custom-item">            
         <span>     
          <xsl:value-of select="@Title" />
          </span>
          <span>
          <xsl:value-of select="@Emp_First_Name" />
          </span>
          <span>
          <xsl:value-of select="@Emp_Last_Name" />
	      </span>
	      <span>
		  <xsl:value-of select="@Emp_City" />
		  </span>
		  <span>
		  <xsl:value-of select="ddwrt:FormatDate(@Emp_DOB,2057, 3)" />
		  </span>
		  <span>
		  <xsl:value-of select="ddwrt:FormatDate(@DOJ,2057, 3)"/>		
		  </span>
  </div>
  </xsl:template>


this template I have designed ,but these fields are not getting display while I try to use this template
what is the issue exactly that am not able to understand because am very new to share point,so can any one help me??

Thanks in Advance

What I have tried:

I tried various syntax for variable declaration like $ preceded but that also not working
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900