When customizing the rendering of a Field on the List View via SharePoint Designer (SPD)
make sure to remove the ddwrt:ghost attribute from the template.
Usage
For example, for field internal name ShortDesc SPD generated the following field template:
<xsl:template name="FieldRef_Text_body.ShortDesc" ddwrt:dvt_mode="body" match ="FieldRef[@Name='ShortDesc']" mode="Text_body" ddwrt:ghost="show">
<xsl:param name="thisNode" select="."/>
<xsl:choose>
<xsl:when test="@AutoHyperLink='TRUE'">
<xsl:value-of select="$thisNode/@*[name()=current()/@Name]" disable-output-escaping ="yes"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$thisNode/@*[name()=current()/@Name]"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
So, in order to render this field as link:
a)delete ddwrt:ghost="show" attribute
b)replace field rendering code
<xsl:template name="FieldRef_Text_body.ShortDesc" ddwrt:dvt_mode="body" match ="FieldRef[@Name='ShortDesc']" mode="Text_body" >
<xsl:param name="thisNode" select="."/>
<xsl:choose>
<xsl:when test="@AutoHyperLink='TRUE'">
<a href="/{$thisNode/@FileLeafRef}"><xsl:value-of select="$thisNode/@*[name()=current()/@Name]" disable-output-escaping="yes" /></a>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$thisNode/@*[name()=current()/@Name]"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
The ghost attribute is used to mark any xslt that sharepoint considers static and, therefore, will not accept any changes to. When you remove the ghost attribute, your changes should be persisted