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>

  • 相关阅读:
    尝试了一下Flex
    Flash版的拉格朗日插值程序
    关于CSS属性display:none和visible:hidden的区别
    KMaster知识管理平台功能简介
    企业级知识库系统KMaster推荐
    ie6下的location.href错误
    利用Jquery实现http长连接(LongPoll)
    jQuery高亮插件
    当前知识管理系统的焦点问题以及我的一些解决办法
    知识库如何跟其他业务系统结合
  • 原文地址:https://www.cnblogs.com/LeimOO/p/1938898.html
Copyright © 2011-2022 走看看