It seems that the "Open File Browser" link that is supposed to show above the file upload input field will not display because the following line in imce_filefield.js is incorrect:

Line 13: var $file = $('#' + fieldID + '-upload', context);

should be changed to:

var $file = $('#' + fieldID, context);

Once this is done, the link appears as expected.

CommentFileSizeAuthor
#2 imce_filefield_fix_file_browser_link.diff590 bytesbcdev

Comments

web_junkie created an issue. See original summary.

bcdev’s picture

StatusFileSize
new590 bytes

Here's a patch which fixed the issue for me.

avpaderno’s picture

Title: Open File Browser link does not display » "Open File Browser" link doesn't appear
Status: Active » Needs review