FileManagerClientEventsLoaded Property
Gets or sets the client-side event raised after the file manager has been loaded.
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".
Namespace: GleamTech.FileUltimate.AspNet.UIAssembly: GleamTech.FileUltimate (in GleamTech.FileUltimate.dll) Version: 9.1.3
public string Loaded { get; set; }
Public Property Loaded As String
Get
Set
Property Value
String Example function:
function fileManagerLoaded(sender, e) {
var fileManager = sender;
//Pretty print the event arguments
var json = JSON.stringify(e, null, 2);
alert(json);
}
//SAMPLE OUTPUT:
/*
{
"eventName": "loaded"
}
*/
//