Hi ,
how can i enable / disable RadAsyncUpload control in client side ?
with my way that disable / enable control but when enabled you can not select file to upload , the button not work .
how can i enable / disable RadAsyncUpload control in client side ?
with my way that disable / enable control but when enabled you can not select file to upload , the button not work .
<telerik:RadAsyncUpload Width="220px" EnableViewState="true" runat="server" ID="AUJustificatifEnfant" MaxFileInputsCount="1" Enabled="false" >
<script type="text/javascript">
function GetValue(sender, eventArgs) {
var AUJustificatifEnfant = document.getElementById('AUJustificatifEnfant');
AUJustificatifEnfant.disabled = ! (chkAutreMotivation.checked || chkEnfantBasAge.checked);
}
</script>