获取 MultiChoice 列值,而无需使用“#”等不必要的符号来自共享点库
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是 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.
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