[SalesForce] How to avoid page reload on standardController standard action (Save)

i am using stadardcontroller Opportunity on my visualforce page but my concern is i don't want to reload that Opportunity detail page when i click on Save Button…

Code :

<apex:commandButton value="Save" action="{!Save}" reRender="Pb1" />

What should i need add in this line ?

Help me out….

Thanks

Best Answer

try action="{!quickSave}" Standard Controller action

Related Topic