Hello, I have 2 uploader in the same page.
I Already implemented disable browse button for the second upload button..
I want to re-enable it after the first upload have been successfully commited.
can you tell me how? Maybe via javascript or anything. My assumption is adding some code on the OnSuccess action, but I dont know what to add.
@Html.EJS().Uploader("UploadFiles2").DropArea(".control-fluid").Failure("onUpFail").Removing("onFileRemove").Success("OnSuccess").Enabled(false).AsyncSettings(new Syncfusion.EJ2.Inputs.UploaderAsyncSettings { SaveUrl = @Url.Content("~/ATDLookup/Uploader"), RemoveUrl = @Url.Content("~/ATDLookup/Remove") }).Render()
Notice the id is UploadFiles2 since the first one is on the other line of code
Thankyou