We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For checkboxlist i need it validation rules are present always onle fist enable chekbox. FIX code is
// Fix for CheckboxList - validation rules are present always only on ENABLE first input if (elem.name && elem.name.match(/\[\]$/) && elem.type.toLowerCase() == 'checkbox') { if(!elem.form.elements[elem.name].tagName) { for(var i=0 ; i <elem.form.elements[elem.name].length ; i++) { if(elem.form.elements[elem.name][i].disabled == false) { elem = elem.form.elements[elem.name][i]; break; } } } }
The text was updated successfully, but these errors were encountered:
Hi, could you please send a PR?
Sorry, something went wrong.
No branches or pull requests
For checkboxlist i need it validation rules are present always onle fist enable chekbox. FIX code is
The text was updated successfully, but these errors were encountered: