Closed (fixed)
Project:
Conditional Fields
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
12 Jan 2009 at 07:36 UTC
Updated:
12 Mar 2009 at 17:51 UTC
Jump to comment: Most recent file
Comments
Comment #1
peterpoe commentedThis one was difficult: collapse.js toggles visibility of the content of a fieldset by adding and removing the 'collapsed' class that has a 'display: none' property attached to all contents. Since the field inside is already hidden by css, jQuery's hide() function didn't add a 'display: none' property to it. So I had to change it with a css('display', 'none') function.
Patch included. Note that the javascript has been reworked a bit to avoid duplication of code.
Comment #2
peterpoe commentedCommitted to dev.
Comment #4
kenorb commentedThis patch caused this issue: #373954: doesn't work with content_profile_registration.module on Registration form
I've made the patch, which revert some changes from this committed patch.