changing sharepoint column name using xslt

Frizzle

New Member
I want to change the display name of "Item child count" on my lists. The "only" way I could find untill now is through xslt(no, that particular column cannot be found in the document library columns for me to edit), but being a beginer on the matter I'm finding it a bit hard to master/use.A small example of what I'm trying to do:\[code\]<xsl:output method="html" indent="yes"/><xsl:template match="ItemChildCount" mode="body" xmlns:ddwrt2="urn:frontpage:internal"> <xsl:param name="thisNode" select="."/> <xsl:choose> <xsl:when test="$thisNode/@*[name()=current()/@name]='ItemChildCount'"> <xsl:attribute name="displayname">Elementi</xsl:attribute> </xsl:when> </xsl:choose>\[/code\]
 
Back
Top