salesforce:如何设置自定义标签主页?
我创建了自定义对象和自定义选项卡(标签文本=“order”)。
现在我的标题如下所示,就像每个人都可以做的那样。
[home]__[customer]__[order]
当我点击“order”
选项卡时,我会被重定向到“order”
的主页
“order”主页有:
视图(进入搜索功能)
最近记录
我的问题是如何更改此主页的布局?我查看了整个网站和文档,但似乎这是不可能的。我唯一的选择是创建全新的 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:
view (which goes to search feature)
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以,您无法更改默认选项卡主页的内容,超出“设置”下的有限控件。您必须创建一个新的 Visualforce 页面并将该页面全部替换;但是,使用增强列表,您无需太多编码即可了解基础知识,如下所示:
这只会在选项卡上显示标准帐户列表视图(可能有最近的项目),但您可以使用其他组件或使用设置控制器自定义列表视图。
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:
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.