Showing posts with label Cancel in visuafforce page. Show all posts
Showing posts with label Cancel in visuafforce page. Show all posts

Wednesday, July 2, 2014

How to implement “Cancel” functionality in a VisualForce Page?

 How to implement “Cancel” functionality in a VisualForce Page?


Apex Class:


public class sampleExtension {
  ApexPages.standardController std = null;
  public sampleExtension(ApexPages.standardController sc)  {
    std = sc;
  }
  public PageReference doCancel()  {
    return std.cancel();
  }
}

VisualForce Page:
Note: this doesn't necessarily take you to the list view, it’ll return you to the last page you were viewing before going to the VF page.

Reference: 





 
| ,