Hi,
Right after I enable the module on my Drupal 6.9 setup, I lose the collapsibility functionality of fieldsets on the module admin screen. This is also true on most other pages that have collapsible fieldsets on them (but not on "user edit" page for instance). Therefore, if a fieldset is collapsed by default, there is no way to see into it, and if it's open, no way to close it.
I had the 6.x-1.0 installed but upgrading to dev didn't solve this. I enabled the jQuery Update module and tried other try and see changes but the closest I got to isolating probable causes was through using Webdeveloper.
I get this error:
Error: $(".drupal-tabs:not(.tabs-processed)", context).addClass("tabs-processed").each(function () {if ($(this).is(".tabs-navigation")) {Drupal.tabsNavigation(this);}}).find("> ul").tabs is not a function
Does anyone see anything wrong here?
Thanks in advance.
-Necati
Comments
Comment #1
deleuje commentedWhen I cut out the "process custom tabs" section within tabs.js and try again, the collapsible fieldsets are back, so the problem definitely lies here.
Where exactly though?
Comment #2
deleuje commentedOK. The theme I am using is one that was ported from its Drupal 5 version. Apparently, through template.php it includes jQuery on all admin pages.
Including the jQuery under the core misc folder, after the (updated) jQuery is included must have been causing trouble (don't know what).
Deleting that line in template.php solved my problem.
Comment #3
nedjoGlad to hear you got it sorted, thanks for following up!