使用SharePoint的数据视图部件时可以获取引用列的ID吗?
我有一个数据视图部件从一个具有查找列的列表拉到另一个列表(标题由 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Lookup Field 的值的格式为“ID;#Text”。为了获取 ID 值,我们使用常规 xslt:
The value of a Lookup Field is in the format of "ID;#Text". To get the ID value, we use is regular xslt: