This question is locked. New answers and comments are not allowed.
I was trying to use Telerik Upload control in my project. In that, i need to use custom button. The button is shown when upload control has atleast 1 file. If no file is present then the custom button to be hidden.
Here is my View code : (note: createitems is my button ID)
$(document).ready(function () { $('#createitems').hide(); });function UploadSuccess(e) {$('#createitems').show();}function UploadRemove(e) { var files = e.files; if (files.length > 0) { $('#createitems').show(); } else { $('#createitems').hide(); } }