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
sabeerasabeera 

How to add Object like lead as a link in home using visualforce+Angular JS

Paradiso SolutionsParadiso Solutions
Do you want link to lead tab or you want list of lead records in home page ?
sabeerasabeera
I need lead as tab like records and new button list views every thing but it refresh only when i click this link like that i need 5 different links Ex: LeadInbox
Paradiso SolutionsParadiso Solutions


Ok if you want link to tab follow the given steps


Go to Setup - >Home -> Home page component - > EDIT  custom links  ->  add lead tab link there
Go to Setup - >Home -> Home Page Layouts - > Check custom link if it is unchecked
And if you want Visualforce page with records in home
Create page with the below code
<apex:page standardController="Contact" recordSetvar="Contact" tabstyle="Contact">
<apex:pageBlock >
    <apex:ListViews type="Contact" />
</apex:pageBlock>
</apex:page>


And follow steps 1 and 2 given above to add your page to home layout

Mark as best answer if it satisfies your needs