After selecting a file in kendoUpload two buttons show up: Upload and Clear:
Is it possible to hide those two buttons? I want to do the upload process programmatically.
I already found out that the two buttons are not accessible after initialization of the kendoUpload widget but also not right away after the SELECT event triggers (on selecting a file to be uploaded). I have found a solution waiting some milliseconds in the SELECT event to hide the two buttons:
setTimeout(function() {
$('k-actions').css('display', 'none');
}, 10);
Is there a more proper way to hide those buttons?
I'm working with KendoUI for JQuery, very latest official version.
Regards