localization.headerStatusUploading String

Sets the status message of the header for the files that are in the process of upload.

Example

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