
Sourabh Goyal
Individual-
Sharmila Sahoo replied to the discussion How to return reference to home page of object in Salesforce when clicked on a button? in the forum Salesforce® Discussions 6 years ago
Reply to How to return reference to home page of object in Salesforce when clicked on a button?
Hi Vinay,
I tried this but still same issue. It is not going anywhere after clicking on cancel button.Actually I have created one visualforce tab which is launching VF page having standard controller(Opportunity)and extension.
I got a way through
<input type="button" class="btn" value="Cancel" onclick="window.location… Read more
-
Sharmila Sahoo started the discussion How to return reference to home page of object in Salesforce when clicked on a button? in the forum Salesforce® Discussions 6 years ago
How to return reference to home page of object in Salesforce when clicked on a button?
I need to override cancel button in VF page in salesforce. I tried using return null in
public pageReference cancelButton() {
return null;
}But it is not going anywhere after clicking on Cancel button.
I tried to use:
PageReference oppPage = new ApexPages.StandardController(opp).view();
oppPage .setRedirect(true);
return oppPage ;Still… Read more
-
Sharmila Sahoo started the discussion how can we avoid add product selection screen while creating opportunity in Salesforce? in the forum Salesforce® Discussions 6 years ago
how can we avoid add product selection screen while creating opportunity in Salesforce?
We have one requirement, for one specific new record type in Opportunity, users do not want to see Price book selection and Add Product to Opportunity selection while creating Opp.
I was able to avoid Price book selection screen through Process Builder by setting default value of price book for that record type. But Add Products to Opp screen… Read more
-
Sharmila Sahoo became a registered member 6 years ago