salesforce:如何设置自定义标签主页?

发布于 2024-09-30 21:23:29 字数 370 浏览 1 评论 0原文

我创建了自定义对象和自定义选项卡(标签文本=“order”)。

现在我的标题如下所示,就像每个人都可以做的那样。

[home]__[customer]__[order]

当我点击“order”选项卡时,我会被重定向到“order”的主页

“order”主页有:

  1. 视图(进入搜索功能)

  2. 最近记录

我的问题是如何更改此主页的布局?我查看了整个网站和文档,但似乎这是不可能的。我唯一的选择是创建全新的 Visualforce 页面并将该页面设置为“订单”选项卡的默认主页。

I've created custom object and custom tab (label text="order").

Now my header looks like below just like everyone can do.

[home]__[customer]__[order]

And when I click on "order" tab, I am redirected to home page of "order"

The "order" homepage has:

  1. view (which goes to search feature)

  2. recent record

My question is how do I change the layout of this homepage? I've look though entire site and documentations but seems like it is not possible. The only option I have is to create brand new visualforce page and set that page as default homepage for the "order" tab.

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

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

发布评论

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

评论(1

故乡的云 2024-10-07 21:23:29

不可以,您无法更改默认选项卡主页的内容,超出“设置”下的有限控件。您必须创建一个新的 Visualforce 页面并将该页面全部替换;但是,使用增强列表,您无需太多编码即可了解基础知识,如下所示:

<apex:page>
    <apex:enhancedList type="Account" height="500" />
</apex:page>

这只会在选项卡上显示标准帐户列表视图(可能有最近的项目),但您可以使用其他组件或使用设置控制器自定义列表视图。

No, you can't change the contents of a default tab homepage beyond the limited controls under Setup. You would have to create a new Visualforce page and replace the page all together; however, with an enhancedList, you can get the basics down without too much coding, like this:

<apex:page>
    <apex:enhancedList type="Account" height="500" />
</apex:page>

This would just show the standard Account list views on the tab (which could have Recent Items), but you could spruce things up with other components or make the list view customized with a set controller.

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