在 SharePoint XSLT 中比较作者与用户 ID
我有一个简单的 DataFormWebPart,我在其中使用 XSLT 呈现列表的内容。 我想将每个列表项的 @Author 字段与当前用户进行比较,但是以下内容不会计算为 true:
在 XSL 的标头中:
<xsl:param name="UserID" />
以及在计算行的模板中:
<xsl:value-of select="@Author" />
<xsl:if test="@AuthorID = $UserID">(you)</xsl:if>
我有 @Author 和 @Author 的值$UserID:
- @Author 呈现为其用户配置文件的超链接
- $UserID 呈现为相同的文本,但没有超链接。
我可以使用什么表达式来获取用户配置文件的非超链接值?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
找到了快速获胜的方法:
Found a quick win:
应参考
https://sharepoint.stackexchange.com/questions/ 21202/自定义表单不显示按值创建
Should refer
https://sharepoint.stackexchange.com/questions/21202/custom-form-does-not-display-created-by-value