Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Can't Display get_multi_upload_data #32

Open
DeviJv opened this issue Jul 1, 2017 · 2 comments
Open

Can't Display get_multi_upload_data #32

DeviJv opened this issue Jul 1, 2017 · 2 comments

Comments

@DeviJv
Copy link

DeviJv commented Jul 1, 2017

help me :(

@samchi7095
Copy link

can you see the error log?

@Cerkal
Copy link

Cerkal commented Feb 12, 2019

If anyone else if having this issue I was able to resolve it by removing any file inputs that were left blank before submitting the form.

$('form').submit(function() {
    $('input[type="file"]').each(function() {
        if ($(this).val() == '') {
            $(this).remove();
        }
    });
    return true;
});

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants