リストの「アイテム子数」の表示名を変更したい。私が今まで見つけることができた「唯一の」方法は、xslt を使用することです (いいえ、その特定の列はドキュメント ライブラリの列で見つけることができず、編集することはできません)。 /使用する。
私がやろうとしていることの小さな例:
<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>