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.
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | vertical_tabs.js_.patch | 608 bytes | enzipher |
Comments
Comment #1
enzipher commentedHi,
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.
Comment #2
gmclelland commentedchange works for me. Could someone create a patch file?
Comment #3
enzipher commentedPerhaps this one could work.
Comment #4
grasmash commentedI also experienced this bug. Patch worked. Needs to be committed.
Comment #5
enzipher commentedChanging the status of this issue.
Comment #6
dvasquez commentedAre you working on 6.x-1.0-rc1 version?
It's working for me, but after uploading files, it's broken again!
Comment #7
unic commentedComment #8
vojnar commented#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