focus
Focuses the input element of the Upload.
Example
<input type="file" name="files" id="upload" />
<script>
$("#upload").kendoUpload();
var upload = $("#upload").data("kendoUpload");
// Focuses the input element of the Upload
upload.focus();
</script>