1 risposta
Hi there, when you are trying to make a custom button on the object then you will have to mandatorily use standard controller and extensions in your VF page or else your page will not show up under the object.Example imagine I want to add a custom VF page on Account then below is how my VF page should look like.
Hope this helps!Prady01<apex:page lightningStyleSheets="true" extensions="StockListController" standardController ="Account">
// your code goes here.
</apex:page>