zoukankan      html  css  js  c++  java
  • 总结:SharePoint Designer 2010 DVWP (2) DataFormWebPart 不同类型的Column对应的XSLT写法

    对于带连接的Title,打开查看Item的详细信息,即DispForm.aspx

    <a href="/Lists/Project Tasks/DispForm.aspx?ID={ ID}">

    <xsl:value-of select="@LinkTitle"/>

    </a>

    多行文本

                    方法一:

    <xsl:value-of select="@Description" disable-output-escaping="Yes"/>

                    方法二:

                                    如果内容显示Div等信息,可以用函数substring-beforesubstring-after进行处理.

    3   时间比较与格式化

    (number(ddwrt:FormatDateTime(ddwrt:FormatDate(string(@Created),1033,1),1033,'yyyyMMdd'))>=number(ddwrt:FormatDateTime(ddwrt:FormatDate(string($StartDate),1033,1),1033,'yyyyMMdd'))) and (number(ddwrt:FormatDateTime(ddwrt:FormatDate(string(@Created),1033,1),1033,'yyyyMMdd')) <= number(ddwrt:FormatDateTime(ddwrt:FormatDate(string($EndDate),1033,1),1033,'yyyyMMdd')))

     

    连接

                    <a>

                                    <xsl:attribute name="href">

                                                    <xsl:value-of select="@Project"/>

                                    </xsl:attribute>

                                    <xsl:value-of select="@Project" />

                    </a>

     

    5 Attachment

    <td>

     <xsl:element name="SharePoint:AttachmentsField">

          <xsl:attribute name="runat">server</xsl:attribute>

          <xsl:attribute name="FieldName">Attachments</xsl:attribute>

          <xsl:attribute name="ControlMode">Display</xsl:attribute>

          <xsl:attribute name="Visible">true</xsl:attribute>

          <xsl:attribute name="ItemId">

              <xsl:value-of select="@ID"/>

          </xsl:attribute>

     </xsl:element>

    </td>

  • 相关阅读:
    黑马程序员——正则表达式
    黑马程序员——集合框架知识点总结
    黑马程序员——String类知识点详细
    黑马程序员——System、Runtime、Date、Calender、Math静态类
    黑马程序员——IO流总结
    黑马程序员——多线程中的安全问题 :
    获取一段字符串中含有某一子字符串的个数的方法定义:
    debian彻底删除apache2
    linux下mysql的安装
    markdown学习
  • 原文地址:https://www.cnblogs.com/LeimOO/p/1938898.html
Copyright © 2011-2022 走看看