Controls that are not initially displayed on the page don't ever get validated after displaying them. isExcluded is checked at validation time, so it is safe to just skip this check.
@@ -88,9 +88,9 @@
.find('[name], [data-bv-field]')
.each(function() {
var $field = $(this);
- if (that._isExcluded($field)) {
- return;
- }
+ //if (that._isExcluded($field)) {
+ // return;
+ //}
var field = $field.attr('name') || $field.attr('data-bv-field'),
opts = that._parseOptions($field);