localization.dropFilesHere String
(default: "drop files here to upload")
Sets the hint of the drop-zone.
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: {
dropFilesHere: "customDropFilesHere"
}
});
</script>