Sharepoint - 更改列表中字段的显示方式

发布于 2024-12-03 16:01:13 字数 211 浏览 0 评论 0原文

我有一个包含多个查找字段的共享点列表。我想更改其值的显示方式(通常您会获得指向所选项目的链接,例如 item1;item2;item3),以便我可以构建自己的链接以将我重定向到按在此选择的项目过滤的源列表抬头。

我尝试通过继承 SPFieldLookup 创建自定义字段来做到这一点,但我有点卡住了,因为我不知道要重写哪个方法/属性来更改正在显示的内容(如果这可以在全部)。任何帮助将不胜感激

I have a sharepoint list that contains a multiple lookup field. I would like to change the way its values are displayed (normaly you get links to chosen items like item1;item2;item3), so that I could for instance construct my own link to redirect me to the source list filtered by items chosen on this lookup.

I try to do that by creating a custom field by that is inheriting SPFieldLookup, but i'm a bit stuck since I can't don't know which method/property to override to change what is being displayed (if this is possible at all). Any help would be appreciated

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

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

发布评论

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

评论(1

无悔心 2024-12-10 16:01:13

我将创建一个继承自 SPFieldLookup 的自定义字段类型。但我不使用渲染服务器端,而是使用 XSTL 来渲染该字段:

如何:自定义列表视图上字段的呈现

这样您就根本不必实现自定义 SPField 类。您只需创建一个指向 OOTB SPLookupField 的自定义字段类型定义。

<?xml version="1.0" encoding="utf-8" ?>
<FieldTypes>
    <FieldType>
        <Field Name="TypeName">CustomLookupField</Field>
        <Field Name="TypeDisplayName">Custom Lookup Field</Field>
        <Field Name="TypeShortDescription">Custom Lookup Field</Field>
        <Field Name="FieldTypeClass">Microsoft.SharePoint.SPFieldLookup</Field>
        <Field Name="ParentType">Lookup</Field>
    </FieldType>
</FieldTypes>

I'd create a custom field type that inherits from SPFieldLookup. But instead of do the rendering server side I'd use a XSTL to render the field:

How to: Customize the Rendering of a Field on a List View

This way you do not have to implement a custom SPField class at all. You just have to create a custom field type definition that points to the OOTB SPLookupField.

<?xml version="1.0" encoding="utf-8" ?>
<FieldTypes>
    <FieldType>
        <Field Name="TypeName">CustomLookupField</Field>
        <Field Name="TypeDisplayName">Custom Lookup Field</Field>
        <Field Name="TypeShortDescription">Custom Lookup Field</Field>
        <Field Name="FieldTypeClass">Microsoft.SharePoint.SPFieldLookup</Field>
        <Field Name="ParentType">Lookup</Field>
    </FieldType>
</FieldTypes>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文