I have visualforce page CompetitorSearch.page
that use CompSearchDummy__c
as standard controller.
<apex:page StandardController="CompSearchDummy__c" extensions="CompetitorSearch">
If I am to add custom button on the page of CompSearchDummy
, CompetitorSearch.page
shows up for the page destination.
But I have Talent
page which use Talent__c sObject
and when I tried to add custom button and attempt to set destination, CompetitorSearch.page
does not show up as an option because I did not set Talent__c
as standard controller
.
Is it possible to somehow add my CompetitorSearch.page link to Talent page?