Using depends with the jQuery Validation plugin - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:53:45Z http://stackoverflow.com/feeds/question/379838 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/379838/using-depends-with-the-jquery-validation-plugin 2 Using depends with the jQuery Validation plugin Glenn Slaven 2008-12-19T00:57:46Z 2009-05-26T01:29:04Z <p>I've got a form with a bunch of textboxes that are disabled by default, then enabled by use of a checkbox next to each one.</p> <p>When enabled, the values in these textboxes are required to be a valid number, but when disabled they don't need a value (obviously). I'm using the jQuery Validation plugin to do this validation, but it doesn't seem to be doing what I expect.</p> <p>When I click the checkbox and disable the textbox, I still get the invalid field error despite the <code>depends</code> clause I've added to the rules (see code below). Oddly, what actually happens is that the error message shows for a split second then goes away.</p> <p>Here is a sample of the list of checkboxes &amp; textboxes:</p> <pre><code>&lt;ul id="ItemList"&gt; &lt;li&gt; &lt;label for="OneSelected"&gt;One&lt;/label&gt;&lt;input id="OneSelected" name="OneSelected" type="checkbox" value="true" /&gt; &lt;input name="OneSelected" type="hidden" value="false" /&gt; &lt;input disabled="disabled" id="OneValue" name="OneValue" type="text" /&gt; &lt;/li&gt; &lt;li&gt; &lt;label for="TwoSelected"&gt;Two&lt;/label&gt;&lt;input id="TwoSelected" name="TwoSelected" type="checkbox" value="true" /&gt; &lt;input name="TwoSelected" type="hidden" value="false" /&gt; &lt;input disabled="disabled" id="TwoValue" name="TwoValue" type="text" /&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre> <p>And here is the jQuery code I'm using</p> <pre><code>//Wire up the click event on the checkbox jQuery('#ItemList :checkbox').click(function(event) { var textBox = jQuery(this).siblings(':text'); textBox.valid(); if (!jQuery(this).attr("checked")) { textBox.attr('disabled', 'disabled'); textBox.val(''); } else { textBox.removeAttr('disabled'); textBox[0].focus(); } }); //Add the rules to each textbox jQuery('#ItemList :text').each(function(e) { jQuery(this).rules('add', { required: { depends: function(element) { return jQuery(element).siblings(':checkbox').attr('checked'); } }, number: { depends: function(element) { return jQuery(element).siblings(':checkbox').attr('checked'); } } }); }); </code></pre> <p>Ignore the hidden field in each <code>li</code> it's there because I'm using asp.net MVC's <code>Html.Checkbox</code> method.</p> http://stackoverflow.com/questions/379838/using-depends-with-the-jquery-validation-plugin/651876#651876 0 Answer by ABrad45 for Using depends with the jQuery Validation plugin ABrad45 2009-03-16T19:45:22Z 2009-03-16T19:45:22Z <p>I don't know if this is what you were going for... but wouldn't changing .required to .wasReq (as a placeholder to differentiate this from one which maybe wouldn't be required) on checking the box do the same thing? If it's not checked, the field isn't required--you could also removeClass(number) to eliminate the error there.</p> <p>To the best of my knowledge, even if a field is disabled, rules applied to it are still, well, applied. Alternatively, you could always try this...</p> <pre><code>// Removes all values from disabled fields upon submit $(form).submit(function() { $(input[type=text][disabled=disabled]).val(); }); </code></pre> http://stackoverflow.com/questions/379838/using-depends-with-the-jquery-validation-plugin/670449#670449 0 Answer by Kristoffer S Hansen for Using depends with the jQuery Validation plugin Kristoffer S Hansen 2009-03-22T02:35:47Z 2009-03-22T02:35:47Z <p>I havent tried the validator plugin, but the fact that the message shows for a splitsecond sounds to me like a double bind, how do you call your binders? If you bind in a function try unbinding just before you start, like so:</p> <pre><code>$('#ItemList :checkbox').unbind("click"); ...Rest of code here... </code></pre> http://stackoverflow.com/questions/379838/using-depends-with-the-jquery-validation-plugin/790063#790063 0 Answer by Daniel Moura for Using depends with the jQuery Validation plugin Daniel Moura 2009-04-26T01:16:40Z 2009-04-26T01:16:40Z <p>Shouldn't validate the field after disabling/enabling?</p> <pre><code>jQuery('#ItemList :checkbox').click(function(event) { var textBox = jQuery(this).siblings(':text'); if (!jQuery(this).attr("checked")) { textBox.attr('disabled', 'disabled'); textBox.val(''); } else { textBox.removeAttr('disabled'); textBox[0].focus(); } textBox.valid(); }); </code></pre> http://stackoverflow.com/questions/379838/using-depends-with-the-jquery-validation-plugin/884455#884455 1 Answer by Ted for Using depends with the jQuery Validation plugin Ted 2009-05-19T18:59:31Z 2009-05-19T20:00:03Z <p>Using the "ignore" option (<a href="http://docs.jquery.com/Plugins/Validation/validate#toptions" rel="nofollow">http://docs.jquery.com/Plugins/Validation/validate#toptions</a>) might be the easiest way for you to deal with this. Depends on what else you have on the form. For i.e. you wouldn't filter on disabled items if you had other controls that were disabled but you still needed to validate for some reason. However, if that route doesn't work, using an additional class to filter on (adding and removing with your checkboxes) should get you to where you want to go, but easier.</p> <p>I.e. </p> <pre><code> $('form').validate({ ignore: ":disabled", ... }); </code></pre> http://stackoverflow.com/questions/379838/using-depends-with-the-jquery-validation-plugin/908565#908565 1 Answer by Collin Allen for Using depends with the jQuery Validation plugin Collin Allen 2009-05-26T01:29:04Z 2009-05-26T01:29:04Z <p>Usually when doing this, I skip 'depends' and just use the <code>required</code> jQuery Validate rule and let it handle the checking based on the given selector, as opposed to splitting the logic between the validate rules and the checkbox click handler. I put together a <a href="http://www.command-tab.com/demos/checkbox%5Fvalidate/" rel="nofollow">quick demo</a> of how I accomplish this, using your markup.</p> <p>Really, it boils down to <strong><code>required:'#OneSelected:checked'</code></strong>. This makes the field in question required only if the expression is true. In the demo, if you submit the page right away, it works, but as you check boxes, the form is unable to submit until the checked fields are filled with some input. You could still put a <code>.valid()</code> call in the checkbox click handler if you want the entire form to validate upon click.</p> <p>(Also, I shortened up your checkbox toggling a bit, making use of jQuery's wonderful chaining feature, though your "caching" to <code>textBox</code> is just as effective.)</p>