Inhibit a checkbox from changing when clicking it. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T12:47:26Z http://stackoverflow.com/feeds/question/191056 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/191056/inhibit-a-checkbox-from-changing-when-clicking-it 0 Inhibit a checkbox from changing when clicking it. Bj&#246;rn 2008-10-10T12:38:51Z 2008-10-10T20:51:55Z <p>I want a checkbox on a web page. When I click it, it sends an ajax request to the server. When the server replies, I want the checkbox to change. I can fix everything except the fact that the checkbox immediately changes state when clicked. </p> http://stackoverflow.com/questions/191056/inhibit-a-checkbox-from-changing-when-clicking-it/191067#191067 1 Answer by Chris Shaffer for Inhibit a checkbox from changing when clicking it. Chris Shaffer 2008-10-10T12:42:19Z 2008-10-10T12:42:19Z <p>Add to your onclick "return false;" and it should not change.</p> http://stackoverflow.com/questions/191056/inhibit-a-checkbox-from-changing-when-clicking-it/191072#191072 4 Answer by Olaf for Inhibit a checkbox from changing when clicking it. Olaf 2008-10-10T12:43:41Z 2008-10-10T12:43:41Z <p>Are you sure you really want this? An Ajax-Request can take its time. When the user gets no feedback, they may be inclined to click again and again, until something happens. When this deactivates the button (again after some time) the user gets even more puzzled.</p> <p>Rather think about providing immediate feedback (e.g. check the box) and display an indicator next to it, that signals communication with the server (e.g. the famous spinning wheel). When the result is back, hide the indicator and deactivate the checkbox if needed. You may also want to inhibit posting the form during the ajax request.</p> http://stackoverflow.com/questions/191056/inhibit-a-checkbox-from-changing-when-clicking-it/191085#191085 0 Answer by Björn for Inhibit a checkbox from changing when clicking it. Björn 2008-10-10T12:47:53Z 2008-10-10T12:47:53Z <p>I already tried the "return false" method, but it didn't work.</p> <p>I agree with the thoughts on feedback, I'll rethink my strategy.</p> http://stackoverflow.com/questions/191056/inhibit-a-checkbox-from-changing-when-clicking-it/191100#191100 0 Answer by tloach for Inhibit a checkbox from changing when clicking it. tloach 2008-10-10T12:50:36Z 2008-10-10T12:50:36Z <p>You could start your onchange method with <code>checkbox.checked=NOT checkbox.checked</code> (you may have to modify this for your language of choice), you'll probably get a flicker but it should put it back quickly enough.</p> http://stackoverflow.com/questions/191056/inhibit-a-checkbox-from-changing-when-clicking-it/191126#191126 0 Answer by Leonel Martins for Inhibit a checkbox from changing when clicking it. Leonel Martins 2008-10-10T12:55:37Z 2008-10-10T12:55:37Z <p>I think you should use other approach indeed. Maybe a button/image button because you want to fire some actions for a click to represent a specific command (desire) from the user. I will try to explain better: i think you have some info in the page and some gadgets where the user can click and do something (add an item to a cart) and i think it is more usable if the gadget has more visual appeal to the user than a checkbox (i.e. a "add it" for instance).</p> <p>Hope this help.</p> http://stackoverflow.com/questions/191056/inhibit-a-checkbox-from-changing-when-clicking-it/192704#192704 2 Answer by Parand for Inhibit a checkbox from changing when clicking it. Parand 2008-10-10T19:16:44Z 2008-10-10T19:16:44Z <p>You could probably do something like this: when the checkbox is clicked, set the checkbox to "disabled" (this greys out the checkbox and makes it uneditable), make your ajax call, and once you get the ajax return remove the "disabled" from the checkbox. Something like this (using jQuery, untested):</p> <pre><code>$('#mycheckbox').click( function() { var checkbox = this; $(checkbox).attr('disabled','1'); $.post( url, data, function() { // if successful $(checkbox).removeAttr('disabled'); } } </code></pre> http://stackoverflow.com/questions/191056/inhibit-a-checkbox-from-changing-when-clicking-it/192981#192981 0 Answer by Grant Wagner for Inhibit a checkbox from changing when clicking it. Grant Wagner 2008-10-10T20:51:55Z 2008-10-10T20:51:55Z <pre><code>&lt;input id="theChkbox" type="checkbox" onclick="this.checked=!this.checked;sendAjaxRequest(this);"&gt; </code></pre> <p><code>this.checked=!this.checked</code> will reset the state of the checkbox to what it was before it was clicked. This should work in all browsers without the state flickering (too much).</p> <p><code>sendAjaxRequest()</code> will do your magic and when the request comes back set the appropriate checked state of the checkbox. Passing <code>this</code> to <code>sendAjaxRequest()</code> should give you a reference to the checkbox so you can adjust its state. Failing that, just use <code>document.getElementById("theChkbox")</code> to retrieve a reference to it to set its state.</p>