localization.invalidFiles String

Sets the text of the validation messages for invalid files when the batch property is set to true and two or more files fail the validation.

Example

<input type="file" name="files" id="photos" />
<script>
    $("#photos").kendoUpload({
        async: {
            saveUrl: "http://my-app.localhost/save",
            removeUrl: "http://my-app.localhost/remove"
            batch:true
        },
        localization: {
            invalidFiles: "customInvalidFiles"
        }
    });
</script>
In this article