4
I found a problem that I am not getting solution for a while, I am working with the framework Materializecss. It has validation with some direct notations in the HTML tag, what I’m not able to validate is when I have a tag select
.
Follows the code:
<div class="input-field col s1">
<select id="comboBasculante" name="comboBasculante">
<option value="0" disabled selected>Selecione</option>
<option value="1">Basculante</option>
<option value="2">Fixo</option>
<option value="3">Janela</option>
<option value="4">Porta</option>
<option value="4">Stanley</option>
</select>
<label data-error="wrong" data-success="right" for="comboBasculante">Produto</label>
</div>
What happens?
– PauloHDSousa