Ticket #6230: check_box_js.patch
| File check_box_js.patch, 603 bytes (added by natmchugh, 3 years ago) |
|---|
-
sapphire/javascript/Validator.js
147 147 } 148 148 149 149 // This checks to see if the input has a value, and the field is not a readonly. 150 if( ( typeof set == 'undefined' || (typeof(set) == 'string' && set.match(/^\s*$/)) ) ) {150 if( ( typeof set == 'undefined' || set === false || (typeof(set) == 'string' && set.match(/^\s*$/)) ) ) { 151 151 //fieldgroup validation 152 152 var fieldLabel = findParentLabel(baseEl); 153 153
