C# -SharePoint - SPGridView - 分组
我已在 SPGridView 中启用分组。 如果分组字段中的记录包含“&” 符号,然后组文本显示为字符串编码。 例如,如果分组列中的记录包含“Cat&Dog”,则分组文本将显示为Cat&Dog
。 我需要的是在我的 GroupBy 标题文本中显示 Cat&Dog 而不是 "Cat&Dog"
。 请让我知道如何解决这个问题。
谢谢 内存
I have enabled grouping in my SPGridView. If the records in the grouped field contain "&" symbol then the group text is displayed as string encoded. For e.g. if the records in the group by column contain "Cat&Dog" then the group by text is displayed as Cat&Dog
. What I need is to display is Cat&Dog not "Cat&Dog"
in my GroupBy Header text. Please let me know how to resolve this issue.
Thanks
Ram
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我很确定在 SPGridView 中分组与您分组所依据的列有某种关系。 我认为您正在寻找的属性是“HtmlEncode”,如果您不希望它自动编码,请将其设置为 False。
I'm pretty sure that in the SPGridView the grouping is related somehow to the column you are grouping by. I think the property you are looking for is "HtmlEncode" and set that to False if you don't want it to encode automatically.