Hello,

I've tried installing it, but it doesn't work. I've checked to make sure the necessary jquery.ui libraries were installed and everything. I think this would be a terrific module if it would work, but I'm at a loss to get it working. Let me know if you have any tips. Thanks!

I'm using jquery 1.2.6 -- does it require 1.3?

Comments

Mac Clemmens’s picture

I'm getting the error:
$.ui.ddmanager.current is null

I'm assuming that's line 6 of taxotoggle.js

$(document).ready(function(){
  $("li:has(a[href*='taxonomy/term/'])").add("li[class*='taxonomy_term_']").draggable({
    helper: function(e1, e2) {
	  val = $.ui.ddmanager.current.element.clone(); 
	  val.css('position', 'fixed');
	  return val;
	}
  });
Mac Clemmens’s picture

OK -- fixed it! I'm thrilled -- the interface is very cool. Nice work!

Here's what I had to do:

On taxotoggle.js,
CHANGED THIS:

$(document).ready(function(){
$("li:has(a[href*='taxonomy/term/'])").add("li[class*='taxonomy_term_']").draggable({
helper: function(e1, e2) {
val = $.ui.ddmanager.current.element.clone();
val.css('position', 'fixed');
return val;
}
});

TO THIS:

$(document).ready(function(){
$("li:has(a[href*='taxonomy/term/'])").add("li[class*='taxonomy_term_']").draggable({
helper: "clone"
});

tomamic’s picture

Thanks for helping. Actually, I tried it some time ago on a fresh installation. It worked without problems. Anyway, now I changed the CVS version according to your suggestion. Can you try on your system, please? Thanks again.

tomamic’s picture

Assigned: Unassigned » tomamic
Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

browlands’s picture

Status: Closed (fixed) » Active

Can someone tell me which versions of jquery_ui, jquery and taxotoggle to use to make this work? This module could be very useful, I've tried lots of combination without success.