vote up 1 vote down star

Hey Gang,

I've got a simple DataFormWebPart where I'm using XSLT to render out the contents of list. I want to compare the @Author field each list item to the current user, however the following won't evaluate to true:

in the header of the XSL:

<xsl:param name="UserID" />

and within the template that evaluates the rows:

<xsl:value-of select="@Author" /> 
<xsl:if test="@AuthorID = $UserID">(you)</xsl:if>

I have values for both @Author and $UserID:

  • @Author renders as a hyperlink to their user-profile
  • $UserID renders as the same text, but without the hyperlink.

What expression can I use to get the non-hyperlink value of the user-profile?

flag

Can you post examples of what the contents of @Author and $UserID look like? – Andrew Hare Jul 15 at 18:11
@Author = <a href="...">Last Name, First</a> $UserId = Last Name, First – bryanbcook Jul 15 at 18:30

1 Answer

vote up 1 vote down check

Found a quick win:

<xsl:value-of select="contains(@Author,concat('&gt;',$UserID,'&lt;'))" />
link|flag
If the format really is how you describe, this is as close as it gets. +1 – Tomalak Jul 16 at 8:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.