Index: trunk/extensions/SemanticForms/libs/SemanticForms.js |
— | — | @@ -268,7 +268,12 @@ |
269 | 269 | } |
270 | 270 | |
271 | 271 | function existsAndVisible(field) { |
272 | | - return (field && field.offsetWidth); |
| 272 | + // there's a major bug in the current implementation, which is that |
| 273 | + // it ignores fields hidden by the Header Tabs extension and others - |
| 274 | + // for now, we'll just override the attempted smartness and say that |
| 275 | + // everything is visible. |
| 276 | + return true; |
| 277 | + //return (field && field.offsetWidth); |
273 | 278 | } |
274 | 279 | |
275 | 280 | function validate_mandatory_field(field_id, info_id) { |