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 9204611
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T23:45:03+00:00 2026-06-17T23:45:03+00:00

I have a form that uses a model to populate some of the fields.

  • 0

I have a form that uses a model to populate some of the fields.

I have a list of checkboxes, and I want a reset button that resets all the checkboxes to what they were when the page loaded. How can I refresh that form with the current model, effectively erasing any changes made?

For example, there are three checkboxes, box 1 is checked and 2 and 3 are not. A user checks 2 and 3 but can’t remember what he changed and doesn’t want to change anything bad, so he wants to hit a reset button that will restore the checkmarks to default while still remaining on the form.

I’m sure some ajax will be involved but I can’t see how to reload the page using the current model.

Is this even possible?

  • 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-06-17T23:45:04+00:00Added an answer on June 17, 2026 at 11:45 pm

    You can store the original values in a data attribute. See example. This way you don’t have to go back to the server (and show a loading indicator, handle the error case, etc), because you have a copy of the original values before they changed.

    HTML

    <input type="checkbox" checked data-was-checked="checked">Option 1</input>
    <input type="checkbox">Option 2</input>
    <input type="checkbox" checked data-was-checked="checked">Option 3</input>
    <input type="checkbox">Option 4</input>
    <button id="reset">Reset</button>
    

    JAVASCRIPT

    $("#reset").click(function () {
        $("[type=checkbox]").each(function (index, cb) {
            cb.checked = !!cb.getAttribute("data-was-checked");
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Django form that uses an integer field to lookup a model
I have a form that uses jquery to generate rows of input fields these
I have a Django form that uses a different number of fields based on
I have a model that uses the same form for both create and update
I have a model that uses a serialized column: class Form < ActiveRecord::Base serialize
I have a form that uses Richtexteditor of Flex3 to write in their reply.
I have a WPF form that uses ClientLogin to log a user into their
I have a web form that uses if statements to create a string of
I currently have a PHP form that uses AJAX to connect to MySQL and
I have a Drupal form array that uses a prefix of '#' to indicate

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.