Using depends with the jQuery Validation plugin - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T21:53:45Zhttp://stackoverflow.com/feeds/question/379838http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/379838/using-depends-with-the-jquery-validation-plugin2Using depends with the jQuery Validation pluginGlenn Slaven2008-12-19T00:57:46Z2009-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 & textboxes:</p>
<pre><code><ul id="ItemList">
<li>
<label for="OneSelected">One</label><input id="OneSelected" name="OneSelected" type="checkbox" value="true" />
<input name="OneSelected" type="hidden" value="false" />
<input disabled="disabled" id="OneValue" name="OneValue" type="text" />
</li>
<li>
<label for="TwoSelected">Two</label><input id="TwoSelected" name="TwoSelected" type="checkbox" value="true" />
<input name="TwoSelected" type="hidden" value="false" />
<input disabled="disabled" id="TwoValue" name="TwoValue" type="text" />
</li>
</ul>
</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#6518760Answer by ABrad45 for Using depends with the jQuery Validation pluginABrad452009-03-16T19:45:22Z2009-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#6704490Answer by Kristoffer S Hansen for Using depends with the jQuery Validation pluginKristoffer S Hansen2009-03-22T02:35:47Z2009-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#7900630Answer by Daniel Moura for Using depends with the jQuery Validation pluginDaniel Moura2009-04-26T01:16:40Z2009-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#8844551Answer by Ted for Using depends with the jQuery Validation pluginTed2009-05-19T18:59:31Z2009-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#9085651Answer by Collin Allen for Using depends with the jQuery Validation pluginCollin Allen2009-05-26T01:29:04Z2009-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>