FileUploaderClientEvents.Ready Property
Definition
- Namespace
- GleamTech.FileUltimate.AspNet.UI
- Assembly
- GleamTech.FileUltimate.dll
Gets or sets the client-side event raised after the file uploader becomes ready for adding files and folders. The value should be a valid JavaScript function name which is accessible on the host page. Function names should be specified without parentheses like "FunctionName" or "Namespace.FunctionName".
public string Ready { get; set; }
Property Value
Examples
Example function:
function fileUploaderReady(sender, e) {
var fileUploader = sender;
//Pretty print the event arguments
var json = JSON.stringify(e, null, 2);
console.log(json);
}
//SAMPLE OUTPUT:
/*
{
"eventName": "ready",
"uploadMethod": "Html5",
"uploadMethodFeatures": {
"selectFile": true,
"selectMultiple": true,
"selectFolder": true,
"dragAndDrop": true,
"displayThumbnails": true,
"sendAsChunks": true,
"sendAsMultipart": true,
"reportProgress": true,
"reportFileSize": true,
"reportFileDate": true
}
}
*/