Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7081371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:54:46+00:00 2026-05-28T06:54:46+00:00

I know that this is how to save a record <apex:commandButton action={!save} value=Save/> Now

  • 0

I know that this is how to save a record

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

Now I want a button to save the current record and reset the form to input another record.

Something like this…

<apex:commandButton action="{!SaveAndNew}" value="Save & New"/>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T06:54:46+00:00Added an answer on May 28, 2026 at 6:54 am

    The URL for the new record page is the {org URL}/{3 letter object prefix}/e?”.

    You could define your save method as follows, where m_sc is a reference to the standardController passed to your extension in it’s constructor:

      public Pagereference doSaveAndNew()
      {
        SObject so = m_sc.getRecord();
        upsert so;
    
        string s = '/' + ('' + so.get('Id')).subString(0, 3) + '/e?';
        ApexPages.addMessage(new ApexPages.message(ApexPages.Severity.Info, s));
        return new Pagereference(s);
      }
    

    To use your controller as an extension, modify it’s constructor to take a StandardController reference as an argument:

    public class TimeSheetExtension
    {
      ApexPages.standardController m_sc = null;
    
      public TimeSheetExtension(ApexPages.standardController sc)
      {
        m_sc = sc;
      }
    
      //etc.
    

    Then just modify your <apex:page> tag in your page to reference it as an extension:

    <apex:page standardController="Timesheet__c" extensions="TimeSheetExtension">
      <apex:form >
        <apex:pageMessages />
        {!Timesheet__c.Name}
        <apex:commandButton action="{!doCancel}" value="Cancel"/>
        <apex:commandButton action="{!doSaveAndNew}" value="Save & New"/>
      </apex:form>
    </apex:page>
    

    Note that you don’t need Extension in the class name, I just did that to be sensible. You shouldn’t need to modify anything else on your page to utilise this approach.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that this is how to save a record <apex:commandButton action={!save} value=Save/> I
I know that this is somewhat subjective, but I wonder if there is a
I know that this is a simple question for PHP guys but I don't
I know that this is subjective and all, but still, can you provide some
I know that this has already been asked here but the answer (using a
I know that this can be easily done by using if(i%5 == 0 OR
I know that this question is asked a lot, I checked all of the
I know that this feature will be deprecated in C++0x, but for me as
I know that this is jumping the gun slightly as it is early days
Do you know a JS library for DOM events simulation? I know that this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.