使用SharePoint的数据视图部件时可以获取引用列的ID吗?

发布于 2024-08-27 23:46:41 字数 228 浏览 6 评论 0原文

我有一个数据视图部件从一个具有查找列的列表拉到另一个列表(标题由 ID 链接),

并且在数据视图 Web 部件配置的 XSLT 中的某处,它显示为

<xsl:value-of select="@ColumnX"/>

Now,因为 ColumnX 是对另一个列表的引用(链接到 item),我如何获取 ID 而不是文本?那里有 ddwrt 技巧吗?

I have a Data View Part pulling from a list that has a lookup column to another list (title linked by ID)

And somewhere in the XSLT of the data view web part configuration, it reads

<xsl:value-of select="@ColumnX"/>

Now since ColumnX is a reference to another list (linked to item), how do I go about obtaining the ID rather than the text? Is there a ddwrt trick out there?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风柔一江水 2024-09-03 23:46:41

Lookup Field 的值的格式为“ID;#Text”。为了获取 ID 值,我们使用常规 xslt:

<xsl:value-of select="substring-before(@ColumnX, ';#')" />

The value of a Lookup Field is in the format of "ID;#Text". To get the ID value, we use is regular xslt:

<xsl:value-of select="substring-before(@ColumnX, ';#')" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文