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
Chandra ShekharChandra Shekhar 

How can Icreate a visual force page which is 100% same as standard page created by salesforce when account tab or any tab is clicked?

User-added image
the area in red. I want to create the excat same page with all tab and icon use visual forceUser-added image
Best Answer chosen by Chandra Shekhar
Nagendra ChinchinadaNagendra Chinchinada
Hi Chandra,

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

Refer below link for more info.

https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_enhancedList.htm

Please let me know if ti helps.

Thanks,
Nagedra Prasad.

All Answers

Nagendra ChinchinadaNagendra Chinchinada
Hi Chandra,

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

Refer below link for more info.

https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_enhancedList.htm

Please let me know if ti helps.

Thanks,
Nagedra Prasad.
This was selected as the best answer
Chandra ShekharChandra Shekhar
Hi Nagendra,
thanks for pointing me in right direction.
Nagendra ChinchinadaNagendra Chinchinada
If it is the the solution, please select the answer as Best answer, so that it will help others who are searching for the same/similar topic..