JavaScript/jQuery FileManager - Custom.Methods
abortFileUpload()
A Promise that is resolved after the file upload is aborted. It is a native Promise or a jQuery.Promise when you use jQuery.
copyItems()
An array of Promise objects. A promise at N index gets resolved after a file or directory with the same index is copied. It is a native Promise or a jQuery.Promise when you use jQuery.
createDirectory()
A Promise that is resolved after a new directory is created. It is a native Promise or a jQuery.Promise when you use jQuery.
deleteItems()
An array of Promise objects. A promise at N index gets resolved after a file or directory with the same index is deleted. It is a native Promise or a jQuery.Promise when you use jQuery.
getItems()
Promise<Array<FileSystemItem>> (jQuery or native)
A Promise that is resolved after file system items are obtained. It is a native Promise or a jQuery.Promise when you use jQuery.
getItemsContent()
A Promise that is resolved after the content of the file system items is obtained. It is a native Promise or a jQuery.Promise when you use jQuery.
moveItems()
An array of Promise objects. A promise at N index gets resolved after a file or directory with the same index is moved. It is a native Promise or a jQuery.Promise when you use jQuery.
renameItem()
A Promise that is resolved after the file or directory is renamed. It is a native Promise or a jQuery.Promise when you use jQuery.
uploadFileChunk()
A Promise that is resolved after the file uploaded. It is a native Promise or a jQuery.Promise when you use jQuery.
If you have technical questions, please create a support ticket in the DevExpress Support Center.