Check documentation for the latest version of dhtmlxSuite setAutoStart DHTMLX Docs

setAutoStart

immediately start uploading after file added to list (true by default)

void setAutoStart(boolean mode);
modebooleantrue/false

Example

// from init
var myVault = new dhtmlXVaultObject({
    autoStart: true
});
 
// for existing instance
myVault.setAutoStart(true);

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.

Change log

added in version 2.0

Back to top