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
TanDTanD 

How to get VF page while overriding?

Overriding NEW button of record detail page of custom OBJECT, no VF page found
I am trying to override standard SF page with a VF page for a custom object. For NEW button of the record detail page of a custom object, I want to replace that. But, no visualforce page is there to select from (image shown). The VF is associated with an apex class of custom controller. 
SrikanthKuruvaSrikanthKuruva
In order to make the VF page appear in the drop down you will have to set the standardController attribute on the vf page to that respective object.

<apex:Page standardController="Custom_Object__c"...
TanDTanD
But, the VF page I am working on has customController. 
SrikanthKuruvaSrikanthKuruva
Yes. You need to update your VF page to use standard controller and extensions. few changes might be required in your current controller class
TanDTanD
If I have to create a standard controller, then I will add all custom controller functionality to the Controller Extension, right?