Check documentation for the latest version of dhtmlxSuite onFileRemove DHTMLX Docs

onFileRemove

fires when the user removes a single file from the list of files

void onFileRemove(object file);
fileobjectan object with file details

Example

myVault.attachEvent("onFileRemove", function(file){
    // file is an object with details
    {
        id:         123,             // int, internal file ID
        name:       "filename.ext",  // string, filename detected by browser
        serverName: "filename2.ext", // string, filename returned by server
        size:       132500,          // int, file size in bytes
        uploaded:   true,            // boolean, true/false
        error:      false            // boolean, error while uploading, if any
    }    
    // your code here    
});

Details

This API page is for Vault v2.5. Please go to docs.dhtmlx.com/vault/ to see API reference for the current version of dhtmlxVault.

  • size in html4 mode is available only after the file has been uploaded
  • serverName is available only after the file has been uploaded
See also
Change log

added in version 2.0

Back to top