本文介绍了当我尝试将该模板作为样式部分的项目样式应用于任何Web部件时,在itemstyle.xsl文件中定义的自定义字段未显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<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>





我设计的这个模板,但是当我尝试使用这个模板时,这些字段没有显示

究竟是什么问题无法理解,因为我很难分享点,所以可以一个人帮帮我??



预先感谢



我尝试了什么:



我为变量声明尝试了各种语法,比如$ preceded但是也没有工作



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

推荐答案


这篇关于当我尝试将该模板作为样式部分的项目样式应用于任何Web部件时,在itemstyle.xsl文件中定义的自定义字段未显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 05:19