Hi all,

When Rubik is enabled with the Taxonomy Manager module the buttons in the attached screenshot are not clickable. Delete, add, etc. Clicking on them does nothing in Firefox and Chrome. Switching the theme to Bartik will make the buttons clickable and Taxonomy Manager Usable.

Drupal v7.15
Taxonomy Manager v7.x-1.0-rc1

Thanks for reading,
-Tim

CommentFileSizeAuthor
Screen shot 2012-09-28 at 12.42.20 PM.png13.63 KBTimG1
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

davidwhthomas’s picture

Yup, same problem here, maybe something to do with the fieldset ids, though that earlier patch has been applied, issue persists.

davidwhthomas’s picture

As a workaround, I used firebug / dom inspector and could locate the hidden div with the form that I needed on the taxonomy manager vocab term page.

I could then remove the "display:none;" css style to reveal it.

It's manual without the js interaction, but the form submitted ok, and I could add multiple terms via textarea.

hth,

DT

jordiserratosa’s picture

Issue tags: +taxonomy manager, +rubik

I use this little snippet to make the workflow easier... It's not a good solution but simplifies the firebug/dom insepector solution.

// Taxonomy manager issue "solution"
$('#taxonomy-manager-toolbar-buttons input[class]').each(function() {
$(this).click(function() {
var classes = $(this).attr("class").split(" ");
$('#taxonomy-manager-form').find('#edit-'+classes[1]).removeAttr('style');
});
});

Added at rubik.js file

haydeniv’s picture

Issue summary: View changes
Status: Active » Closed (duplicate)

This is a duplicate of #1016844: Taxonomy Manager broken - incompatibility with Tao based themes (like Rubik) which has been fixed in Tao so I'm closing this one.