This question is locked. New answers and comments are not allowed.
Hi,
I have a problem with clients events call for upload.
Here is my code:
and any event doesn't call after upload.
Can you explain what is wrong here?
I have a problem with clients events call for upload.
Here is my code:
@(Html.Telerik().Upload() .Multiple(false) .Name("attachments") .Async(async => async .Save("TelerikUpload", "GraphicalElement") .AutoUpload(false)) .ClientEvents(events => events .OnUpload("onUpload") .OnComplete("onComplete")) ) <script type="text/javascript"> function onComplete(e) { alert("Call event onComplete"); } function onUpload(e) { alert("Call event onUpload"); } </script>Can you explain what is wrong here?