2
votes
1answer
876 views

sharepoint dataview webpart xslt group by left characters of a column

I have a sharepoint 2010 list with a column "proposalID". The values in that column are 5555-01, 5555-02, 5555-03, 6666-01, 6666-02, etc. I want to group by the 4 characters to the left of the dash. ...
1
vote
0answers
87 views

muenchian grouping in ContentQueryMain.xsl

I'm Newbie in Sharepoint 2010 ,and I had to deal with ContentQueryMain.xsl which I hardly understand what going on there and what part goes where . I need to group result by Category , then sort them ...
1
vote
1answer
456 views

How to get the current url in xslt

I'm programing in sharepoint and I need to get the current url in my Content Query WebPart's Sytle file(ItemStyle.xsl or ContentQueryMain.xsl) in order to add the querystring to the url of a link in ...
0
votes
1answer
403 views

Count the no. of non empty nodeset in XSLT 1.0

There are 24 rows returned by my dataview webpart. There's a column called NoExperience which has a number type. For some rows, it has value for NoExperience and some rows don't contain value for ...
2
votes
1answer
581 views

Changing URL query string parameter value in for-each loop, xslt

I am using a key to get distinct values from a column's substring as follows: <xsl:for-each select="//dsQueryResponse/Rows/Row[generate-id() = generate-id(key('Years',substring(@Date, ...
2
votes
1answer
422 views

How can I use the value of a variable for the use property of a key in XSLT, I want to achieve use=“$Variable” in the key tag;;

Suppose I have a key defined in an xslt file in SharePoint Designer 2010 as: <xsl:key name="Years" match="/dsQueryResponse/Rows/Row" use="@Date" /> Where @Date is the column, however instead ...