You need to sign in to do that
Don't have an account?

Overrid standard button with custom controller
I want to override the standard SF view to a custom controller, but only standard controllers appear in the VF dropdown list. I need to either:
Find a way of overriding with a custom controller
OR
Switch off the SF behaviour (My problem is the recent items link in the home page takes users directly to the standard SF layout which I do not want users to have access to.
Any ideas?
Go to
Your Name --> Setup --> Customize --> Home --> Home Page Layout
Uncheck those links you don't want on home page.
Regards,
Abhi
All Answers
You can use standard controller with extension, that will be available on the list of page to override.
i.e. <apex:page standardController="Account" extension="MyAccountController" >
else you can remove those links from the Home Page Layout that you don't want to be used by the user.
because you can't change the rederiction of links
Regards,
Abhi Tripathi
SFDC Certified Developer
Do you know how to remove the links from the jome page layout?
Go to
Your Name --> Setup --> Customize --> Home --> Home Page Layout
Uncheck those links you don't want on home page.
Regards,
Abhi