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

  • Home
  • SEARCH
  • 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 942825
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T22:20:11+00:00 2026-05-15T22:20:11+00:00

The problem is like this; A webpage contains multiple form elements, which can be

  • 0

The problem is like this; A webpage contains multiple form elements, which can be altered and saved by the user via a save button, or changes can be discarded.

If the user attempts to navigate away from the page without saving the changes, I need a modal window to pop us asking if the user would like to save the changes before leaving the page.

How would I go about checking to see if the page/form model had been changed by a user since it was first loaded, and how could I initiate this check when any page link is clicked?

Any response or suggestions would be much appreciated,

Thanks.

  • 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-15T22:20:12+00:00Added an answer on May 15, 2026 at 10:20 pm

    I think you would be looking for a javascript-only solution, usually packaged as a wicket behavior.

    implementation depends on the javascript library you use, here is some prototype code:

    var windowdirty = false;
    var windowdirtyinitialized = false;
    
    function initwindowdirty(){
        if(windowdirtyinitialized)return;
        windowdirtyinitialized=true;
    
        Event.observe(window,"beforeunload",function(){
            return (!windowdirty || 
              confirm("You have started entering values, do you really want to leave");
        });
    }
    
    function monitor(componentId){
        $(componentId).observe("change",function(){
            windowdirty = true;
        });
    }
    
    function undirty(){
        windowdirty=false;
    }
    

    We’ll put this in a File called DontLeaveBehavior.js

    Here’s a behavior that uses this javascript file:

    public class DontLeaveBehavior extends AbstractBehavior{
    
        /**
         * {@inheritDoc}
         */
        @Override
        public void renderHead(final IHeaderResponse response){
            response.renderJavascriptReference(new JavascriptResourceReference(DontLeaveBehavior.class,
                "DontLeaveBehavior.js"));
            response.renderOnDomReadyJavascript("initwindowdirty();");
            super.renderHead(response);
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public void bind(final Component component){
            super.bind(component);
            component.setOutputMarkupId(true);
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public void onRendered(final Component component){
            final Response response = RequestCycle.get().getResponse();
            response.write(JavascriptUtils.SCRIPT_OPEN_TAG);
            response.write("monitor('" + component.getMarkupId() + "');");
            response.write(JavascriptUtils.SCRIPT_CLOSE_TAG);
        }
    
    }
    

    Now here’s a page that automatically assigns this behavior to all of it’s children that are text components:

    public class Mypage extends WebPage{
    
        ...
    
        private boolean behaviorAssigned = false;
    
        /**
         * {@inheritDoc}
         */
        @Override
        protected void onBeforeRender(){
            if(!behaviorAssigned){
                behaviorAssigned=true;
                visitChildren(new IVisitor<Component>(){
    
                    @Override
                    public Object component(Component component){
                        if(component instanceof AbstractTextComponent<?>){
                            component.add(new DontLeaveBehavior());
                        }
                        return null;
                    }
                });
            }
            super.onBeforeRender();
        }
    
    }
    

    and last but not least, your submit button has to call undirty() of course.

    None of this has been tested, because I have to go home now to have dinner with my wife & kids (which is even more fun than wicket coding, of course), but it should get you started.

    The prototype specific portion should be easily ported to any other javascript lib, but you probably shouldn’t do it without a lib if you don’t know what you’re doing.


    Edit:

    I have created a new version of this that works with prototype and mootools and posted it on my weblog. This version is only installed to the form component and automatically attaches itself to the children via javascript.

    EDIT again: there, now the link is working

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

Sidebar

Ask A Question

Stats

  • Questions 483k
  • Answers 483k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The Observer pattern is working now, I got the data… May 16, 2026 at 7:13 am
  • Editorial Team
    Editorial Team added an answer Look up tf-idf. You're looking for terms with a high… May 16, 2026 at 7:13 am
  • Editorial Team
    Editorial Team added an answer The way you are trying to do it doesn't make… May 16, 2026 at 7:13 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.