When Vertical Tabs enabled Image FUpload upload progress not shown.

Discovering code I found solution.

In vertical_tabs.js after
var fieldset = $('<fieldset></fieldset>');
add
fieldset.attr('id', $('.vertical-tabs-' + k).attr('id'));
This leave original id of fieldset.

I don't know internal logic of Vertical Tabs so a better way may exists.

CommentFileSizeAuthor
#3 vertical_tabs.js_.patch608 bytesenzipher

Comments

enzipher’s picture

Hi,

Thanks for this great snippet. This keeps the original id on all fields which is needed by jQuery for identification of containers. In my case it was the tagging module that lost its functionality.

I can confirm that it works, although I haven't made any extensive testing.

Thanks!

EDIT: I would also consider this to be a critical issue as it actually breaks functionality of other modules.

gmclelland’s picture

change works for me. Could someone create a patch file?

enzipher’s picture

StatusFileSize
new608 bytes

Perhaps this one could work.

grasmash’s picture

Priority: Normal » Major

I also experienced this bug. Patch worked. Needs to be committed.

enzipher’s picture

Status: Active » Needs review

Changing the status of this issue.

dvasquez’s picture

Are you working on 6.x-1.0-rc1 version?
It's working for me, but after uploading files, it's broken again!

unic’s picture

Version: 6.x-1.0-rc1 » 6.x-1.0-rc2
vojnar’s picture

Priority: Major » Critical

#3 works, please modify your core script with this patch. Without this patch Vertical_tabs errors FUpload. When someone has 10000 modules installed and all the suddent Fupload stoppes working and says: Please wait till all images processed" and stalls, it takes one week to figure out what the problem is.

Other than that it is great,
Thanks