Validate Dropdown list
Hello, Thanks for the plugin, it is doing a great job far for my application. Is there any way to validate the Dropdown list values? I have few dropdowns in my form and not knowing how to validate the same.
Can you explain what you mean by drop-down? Is it ordinary select-elements or are you using a javascript lib of some sort?
I mean the ordinary select element in html `
`
You can apply the same data-validation attribute on select elements
How to validate selectbox?
<select>
<option>select 1></option>
<option>select 1></option>
</select>
if none is selected it should show an error message?
Thanks found the example in doc's