1
How we can fire upload event from jquery in file ultimate?
Question asked by Prashant Paliwal - 11/18/2020 at 4:44 AM
Answered
how we can fire upload event from jquery in file ultimate?

3 Replies

Reply to Thread
0
Verum Replied
Hi, did you find the solution? I am looking for same answer.
0
Prashant Paliwal Replied
Marked As Answer
I got the solution,

@model FileManager

// call jquery function 
@{
    Model.ClientEvents.Uploading = "fileUploaderItemUploading";
    Model.ClientEvents.Uploaded = "fileUploaderUploaded";
   
}

//jquery funcation
function fileUploaderUploaded(sender, e) 
{
   
}
0
Verum Replied
Thanks Prashant!

Reply to Thread