FileManagerClientEvents.Chosen Property
Definition
- Namespace
- GleamTech.FileUltimate.AspNet.UI
- Assembly
- GleamTech.FileUltimate.dll
Gets or sets the client-side event raised after user chooses items in chooser mode. 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 Chosen { get; set; }
Property Value
Examples
Example function:
function fileManagerChosen(sender, e) {
var fileManager = sender;
//Pretty print the event arguments
var json = JSON.stringify(e, null, 2);
alert(json);
}
//SAMPLE OUTPUT:
/*
{
"eventName": "chosen",
"isCanceled": false,
"items": [
{
"itemType": "File",
"name": "DOCX Document.docx",
"fullPath": "[Root Folder 1]:\\DOCX Document.docx",
"extension": "docx",
"dateModified": "2011-06-01T07:21:48.000Z",
"type": "DOCX File",
"size": 84272
},
{
"itemType": "Folder",
"name": "Folder One",
"fullPath": "[Root Folder 1]:\\Folder One",
"extension": "",
"dateModified": "2019-06-23T12:22:04.131Z",
"type": "File Folder",
"size": null
}
]
}
*/