function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Newbie - TomNewbie - Tom 

Change Tab Home view

I*S is possible to change hte "Home" view when a Tab is clicked. For example, when the Lead tab is clicked the "Home" view is displayed which has "recently viewed" items first. TO see all Leads an additional mouse click is required. IS hter nayway to change the default view to be All Leads or whatever?

 

Thanks

Devendra@SFDCDevendra@SFDC

 

Hi,

 

Try this:

 

1. Create a visualforce page LeadTabOverride using following code:

 

<!-- This page is used to display list of all Leads -->
<apex:page showHeader="true" tabStyle="Lead" sidebar="true">
<apex:enhancedList type="Lead" height="450" rowsPerPage="50" customizable="true"/>
</apex:page>

 2. Then Override Lead Tab (Your Name-->Setup-->Customize--> Lead-->Standard Buttons and Links). Click on Edit option and select  "LeadTabOverride" from available vf page list.

 

Hope this helps.

 

Thanks,

Devendra