Hi,
I tried to use the module with Webform 4.0 and ran into an issue - the uploaded images will not save.
I see the uploaded images in the
sites\default\files\webform\3\select_images folder, but the value part of the
fields is missing http://screencast.com/t/yyGC6oEAz2
Tested with 3.19 - everything works perfectly well.
Could you please check it?
Thank you!
Comments
Comment #1
danieltome commentedThis was happening for me with webform 3.20
The triggering ID of the submit button is no longer edit-submit.
So change the value to: edit-actions-submit
from:
if ($form_state['triggering_element']['#id'] == 'edit-submit') {to this:
if ($form_state['triggering_element']['#id'] == 'edit-actions-submit') {The values are now saving.
cheers,
Dan
Comment #2
rajeevgoleI was also facing the same issue with webform version 7.x-3.20 . Dan's solution works for me.
Comment #3
raphael apard commentedComment #5
raphael apard commentedComment #6
raphael apard commented