user3634917
user3634917

Reputation: 33

Uploadify Show Error Message

I use uploadify plugin v3.2.1, the problem is, I use file limit, but when I upload file above that limit it is not showing any error message. I've tried to find on google and found out that I need more codes just like this

'onSelectError' : function() {
        alert('The file ' + file.name + ' returned an error and was not added to the queue.');
    }

But still not work, anyone know? Maybe is in query file, but I don't know how to modify it.

Upvotes: 0

Views: 386

Answers (1)

user3715733
user3715733

Reputation: 21

Try

onSelectError': function (file, errorCode, errorMsg) {
        alert('The file ' + file.name + ' returned an error and was not added to the queue.');
}

Upvotes: 2

Related Questions