What i am trying to do is the RadAsyncUpload control is disabled by default and on selection of an item from Combobox i want to enable RadAsyncUpload control. for this i am calling an javascript. it enables the RadAsyncUpload control but not the control is not actually working as RadAsyncUpload control
here is the javascript:
function ddlDocTypeOnClientSelectedIndexChanged(sender, args) {
var Uploader = $find("<%= rdFileUpload.ClientID %>");
Uploader.set_enabled(true);
}
Please let me know what I am missing here.
here is the javascript:
function ddlDocTypeOnClientSelectedIndexChanged(sender, args) {
var Uploader = $find("<%= rdFileUpload.ClientID %>");
Uploader.set_enabled(true);
}
Please let me know what I am missing here.