开发者

salesforce: How do I set custom tag homepage?

开发者 https://www.devze.com 2023-01-23 20:07 出处:网络
I\'ve created custom object and custom tab (label text=\"order\"). Now my header looks like below ju开发者_运维百科st like everyone can do.

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

Now my header looks like below ju开发者_运维百科st 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.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消