Client/JS Framework for "Unsaved Data" Protection? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:06:07Z http://stackoverflow.com/feeds/question/140460 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/140460/client-js-framework-for-unsaved-data-protection 4 Client/JS Framework for "Unsaved Data" Protection? Kevin Dostalek 2008-09-26T16:12:53Z 2009-06-19T16:26:18Z <p>Hey all- we have a typical web application that is essentially a data entry application with lots of screens some of which have some degree of complexity. We need to provide that standard capability on making sure if the user forgets to click the "Save" button before navigating away or closing their browser they get a warning and can cancel (but only when there is unsaved or dirty data).</p> <p>I know the basics of what I've got to do-- in fact I'm sure I've done it all before over the years (tie in to onbeforeunload, track the "dirty" state of the page, etc...) but before I embark on coding this YET AGAIN, does anyone have some suggestions for libraries already out there (free or otherwise) that will help out?</p> <p>Thanks!</p> http://stackoverflow.com/questions/140460/client-js-framework-for-unsaved-data-protection/140508#140508 5 Answer by insin for Client/JS Framework for "Unsaved Data" Protection? insin 2008-09-26T16:20:39Z 2008-09-26T18:58:22Z <p>One piece of the puzzle:</p> <pre><code>/** * Determines if a form is dirty by comparing the current value of each element * with its default value. * * @param {Form} form the form to be checked. * @return {Boolean} &lt;code&gt;true&lt;/code&gt; if the form is dirty, &lt;code&gt;false&lt;/code&gt; * otherwise. */ function formIsDirty(form) { for (var i = 0; i &lt; form.elements.length; i++) { var element = form.elements[i]; var type = element.type; if (type == "checkbox" || type == "radio") { if (element.checked != element.defaultChecked) { return true; } } else if (type == "hidden" || type == "password" || type == "text" || type == "textarea") { if (element.value != element.defaultValue) { return true; } } else if (type == "select-one" || type == "select-multiple") { for (var j = 0; j &lt; element.options.length; j++) { if (element.options[j].selected != element.options[j].defaultSelected) { return true; } } } } return false; } </code></pre> <p><a href="http://developer.mozilla.org/en/DOM/window.onbeforeunload" rel="nofollow">And another</a>:</p> <pre><code>window.onbeforeunload = function(e) { e = e || window.event; if (formIsDirty(document.forms["someFormOfInterest"])) { // For IE and Firefox if (e) { e.returnValue = "You have unsaved changes."; } // For Safari return "You have unsaved changes."; } }; </code></pre> <p>Wrap it all up, and what do you get?</p> <pre><code>var confirmExitIfModified = (function() { function formIsDirty(form) { // ...as above } return function(form, message) { window.onbeforeunload = function(e) { e = e || window.event; if (formIsDirty(document.forms[form])) { // For IE and Firefox if (e) { e.returnValue = message; } // For Safari return message; } }; }; })(); confirmExitIfModified("someForm", "You have unsaved changes."); </code></pre> <p>You'll probably also want to change the registration of the <code>beforeunload</code> event handler to use <code>LIBRARY_OF_CHOICE</code>'s event registration.</p> http://stackoverflow.com/questions/140460/client-js-framework-for-unsaved-data-protection/736800#736800 2 Answer by Volomike for Client/JS Framework for "Unsaved Data" Protection? Volomike 2009-04-10T05:37:54Z 2009-04-10T05:37:54Z <p>If you use jQuery, here's an easy trick:</p> <pre><code>$('input:text,input:checkbox,input:radio,textarea,select').one('change',function() { $('BODY').attr('onbeforeunload',"return 'Leaving this page will cause any unsaved data to be lost.';"); }); </code></pre> <p>But just remember, if you have a condition where you redirect from this page, or you want to permit a successful form post, you need to do this before that redirect or submit event like so:</p> <pre><code>$('BODY').removeAttr('onbeforeunload'); </code></pre> <p>...or you'll get yourself in a loop where it keeps asking you the prompt.</p> <p>In my case, I had a big app and I was doing location.href redirects in Javascript, as well as form posting, and then some AJAX submits that then come back with a success response inline in the page. In any of those conditions, I had to capture that event and use the removeAttr() call.</p> http://stackoverflow.com/questions/140460/client-js-framework-for-unsaved-data-protection/1018862#1018862 1 Answer by Lance Larsen for Client/JS Framework for "Unsaved Data" Protection? Lance Larsen 2009-06-19T16:26:18Z 2009-06-19T16:26:18Z <p>Wanted to expand slightly on Volomike excellent jQuery code. </p> <p>So with this, we have a very very cool and elegant mechanism to accomplish the objective of preventing inadvertent data loss through navigating away from updated data prior to saving – ie. updated field on a page, then click on a button, link or even the back button in the browser before clicking the Save button.</p> <p>The only thing you need to do is add a “noWarn” class tag to all controls ( especially Save buttons ) that do a post back to the website, that either save or do not remove any updated data. </p> <p>If the control causes the page to lose data, ie. navigates to the next page or clears the data – you do not need to do anything, as the scripts will automatically show the warning message.</p> <p>Awesome! Well done Volomike!</p> <p>Simply have the jQuery code as follows:</p> <pre><code>$(document).ready(function() { //---------------------------------------------------------------------- // Don't allow us to navigate away from a page on which we're changed // values on any control without a warning message. Need to class our // save buttons, links, etc so they can do a save without the message - // ie. CssClass="noWarn" //---------------------------------------------------------------------- $('input:text,input:checkbox,input:radio,textarea,select').one('change', function() { $('BODY').attr('onbeforeunload', "return 'Leaving this page will cause any unsaved data to be lost.';"); }); $('.noWarn').click(function() { $('BODY').removeAttr('onbeforeunload'); }); }); </code></pre>