How to validate a <select>
when this is a dynamic array? Like this:
<select class="escolhaVidro id_material" name="id_material[]" id="id_material">
To clarify: This <select>
assembled dynamically by PHP, so I do not know what are the indexes, so this way is not possible:
$(this).validate({
rules: {
"id_material[index]" : {
required : true
}
}
});
And so strangely this plugin does not work:
$(this).validate({
rules: {
id_material : {
required : true
}
}
});
I also tried to use a CSS class
required
in <select>
, but no good.
Quote OP: "And so strangely this plugin does not work:
$(this).validate({ ... });
"
It's not strange. It's not working because you have not really targeted anything. There's no context or scope for $(this)
to have any meaning.
You must properly target your <form>
element:
for example, by id
...
$('#myform').validate({ ... });
...or by any other valid jQuery selector that targets the actual <form></form>
you want validated.
Here is a generic example of how to validate a select
element that you can easily adapt into your situation:
http://jsfiddle.net/Gy24q/
Important, the very first, or the default option
in the select
element must contain value=""
or the required
rule will fail. If, for whatever reason, you cannot set this first option
's value
equal to ""
, then see this answer's custom method workaround and jsFiddle.
HTML:
<form id="myform">
<select name="id_material[]">
<option value="">please choose...</option>
<option>option 1</option>
<option>option 2</option>
<option>option 3</option>
</select>
....
</form>
Since your name
contains brackets, []
, you also must enclose your field name in quotes:
jQuery:
$(document).ready(function () {
$('#myform').validate({ // initialize plugin within DOM ready
// other options,
rules: {
'id_material[]': {
required: true
}
},
});
});
The above answer assumes you know the name
of the select
element. However, if you don't know the name
, you have a couple options...
1) Use class="required"
inside the select
element...
<select class="escolhaVidro id_material required" name="id_material[]" id="id_material">
Demo: http://jsfiddle.net/Gy24q/4/
2) If the rules are more complex, you can add compound rules
based on your existing class
assignments using the rules('add')
method.
Use jQuery .each()
if you have more than one select
element that needs this rule...
// must be called after validate()
$('select.id_material').each(function () {
$(this).rules('add', {
required: true
});
});
Demo: http://jsfiddle.net/Gy24q/10/
Otherwise, this will only apply the rule to only one select
element with class
id_material
...
$('select.id_material').rules('add', {
required: true
});
EDIT:
Quote OP in comments:
Inside the function following validation is performed:
$('#formOrcamento').live('submit', function() {...});
Then$(this).validate({...});
refers to:$('#formOrcamento').validate ({...});
same as:
$('#formOrcamento').live('submit', function() {
$(this).validate({ ... });
});
Yes, this is exactly why it's broken.
.validate()
only gets called once on DOM ready to initialize the plugin. You are not supposed to put it inside a submit
handler. The Validate plugin already has its own built-in event handler that captures the form's submit button.
Setup your code as per my working jsFiddle demos above.
EDIT 2:
Quote OP in comments:
I'm using
jquery-ui
and this adds to the select the following:style='display: none'
. If I remove via Firebug thedisplay: none
, then select validation occurs and displays the label error correctly. What might be happening?
The Validate plugin ignores hidden elements by default. You'll need to turn that option off by adding ignore: []
to validate()
:
$(document).ready(function () {
$('#myform').validate({
ignore: [], // to allow validation of hidden elements
// other options,
});
});
See this answer for more information.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With