获取 MultiChoice 列值,而无需使用“#”等不必要的符号来自共享点库

发布于 2024-11-10 05:33:19 字数 147 浏览 4 评论 0原文

我正在使用 Rad grid 来显示共享点库项目。当我显示 ChoiceWith CheckBox 类型列时,这些值在每个选择值之前和之后都带有附加符号 ;# 。

如何从 ChoiceWithCheckBox 类型列中删除 ;# 符号?

提前致谢。

I am using Rad grid to display sharepoint library items. When i am displaying ChoiceWith CheckBox type columns, then the values are coming with additional symbols of ;# before and after each choice value.

How can i remove the ;# symbols from ChoiceWithCheckBox type columns ?

Thanks in Advance.

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

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

发布评论

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

评论(2

迟月 2024-11-17 05:33:19

这就是 SharePoint 在内部存储值的方式。它基本上是一个键/值对。
您可以手动解析项目以仅返回不带键的值。

That's how SharePoint stores the values internally. It's basically a key/value pair.
You can manually parse the items to only return the value without the key.

篱下浅笙歌 2024-11-17 05:33:19

SharePoint 列表中的查找字段/列在内部存储为键#值对。

使用 SPFieldLookupValue 获取值(文本)或查找字段中的键(数字)。

SPFieldLookupValue('列名称').LookupValue 为您提供键#值对中的 VALUE
SPFieldLookupValue('column name').LookupId 为您提供键#值对中的 KEY

我猜您直接将 SPItemCollections 对象(List.items 或 CAML 查询结果)绑定到 telerik radGrid。我通常创建一个通用列表(在内存对象中),用用户想要查看的格式的项目填充该列表,然后将通用列表绑定到 radGrid。

如果您正在处理 SharePoint 2010 列表,请查看 SPRadGrid telerik webpart 满足您的需求

A Lookup field/column in a SharePoint list is stored as a key#value pair internally.

Use SPFieldLookupValue to get either the value(Text) or the key(number) from the lookup field.

SPFieldLookupValue('column name').LookupValue gives you the VALUE in the key#value pair
SPFieldLookupValue('column name').LookupId gives you the KEY in the key#value pair

I guess you are directly binding the SPItemCollections object (List.items or CAML query results) to your telerik radGrid. I usually create a generic list(in memory object), populate the list with items in the format user wants to see and then bind the generic list to radGrid.

If you are working on a SharePoint 2010 list, see if SPRadGrid telerik webpart suits your need

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文