Archive for the 'SharePoint 2010' Category

17 Mar

How to remove thousand separator from a number field of SharePoint using XSLT?

While working with SharePoint numerical columns, we do face situations when we do not need the thousand separator from the numbers. For the same, please use the following code.   <xsl:variable name="MyPrice">     <xsl:choose>     <xsl:when test="contains(@Price, ‘,’)">         <xsl:value-of select="concat(substring-before(@Price, ‘,’), substring-after(@Price, ‘,’))" />     </xsl:when>     <xsl:otherwise>         <xsl:value-of select="@Price" />     </xsl:otherwise> [...]

16 Mar

How to compare dates using XSLT and find the largest one?

While working in SharePoint dataviews, we need to compare dates several times to find out a larger one. While I wondered around this and I see there is no direct function to do this. I found a workaround which I generally use.   1. Create 2 variables from dates. I’m converting both dates to US [...]

15 Mar

How to remove link for SharePoint lookup column from a DataView WebPart using XSLT

Whenever we use a lookup column into the dataview or listview, it displays a link to the lookup item it is referring to. This is the same behavior you see on the backend list views. But sometimes we just need to show data on page and do not need the link to the lookup item. [...]