FileManagerClientEvents.FolderChanged Property
Definition
- Namespace
- GleamTech.FileUltimate.AspNet.UI
- Assembly
- GleamTech.FileUltimate.dll
Gets or sets the client-side event raised after user changes folder (navigates to a different folder). 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 FolderChanged { get; set; }
Property Value
Examples
Example function:
function fileManagerFolderChanged(sender, e) {
var fileManager = sender;
//Pretty print the event arguments
var json = JSON.stringify(e, null, 2);
alert(json);
}
//SAMPLE OUTPUT:
/*
{
"eventName": "folderChanged",
"folder": {
"name": "Folder One",
"fullPath": "[1. Root Folder]:\\Folder One",
"itemType": "Folder"
}
}
*/