Hello,

I've installed autotag together with the required modules jquery_ui and jquery_update.

In the node editing page, in #autotag-container DIV no D&D is enabled. It seemed like autotag did not actually use jquery modules.

Javascript console both in Safari and Firefox on Macosx reported error in the first line of autotag-jquery.js

"$.('.autotag-dragable').draggable is not an object"

I discovered that in autotag.module there were no jquery calls. I added

function autotag_form_alter($form_id, &$form){
  // fgiacane 20081021 - manca chiamata jquery
  jquery_ui_add(array('ui.draggable', 'ui.droppable'));
  //

 [...]

}

Now everything works fine.

Comments

fumbling’s picture

On what line of the code should I insert that function? Thanks.

fgiacanelli’s picture

At line 92, just below autotag_form_alter function declaration:

function autotag_form_alter($form_id, &$form)

fumbling’s picture

Thanks, I inserted it now. Autotagger still isn't working for me, but I don't think it's related to this thread's issue anymore. I posted here (http://drupal.org/node/337128) regarding my attempt to get it working as a whole with no luck. If you have a minute, please let me know if you see anything in my attempt that I missed. Thanks again.

sdrycroft’s picture

Status: Active » Closed (won't fix)

Apologies, but I'm marking this as "won't fix". We're currently pushing all our modules up to D6, and won't be fixing any D5 bugs (unless major). D5 is no longer a supported release.