|
@Html.EJS().FileManager("file").AjaxSettings(new Syncfusion.EJ2.FileManager.FileManagerAjaxSettings
{
DownloadUrl = "http://localhost:62869/api/SQLProvider/SQLDownload"
}).Success("success").Render()
<script>
function success(args) {
if (args.action == "Upload") {
// Change the upload text.
args.result.statusText = "File uploaded";
}
}
</script> |