progressBar

specifies the configuration of the progress bar

object progressBar;

Deprecated

Use the progressBar property of the templates configuration option instead:

const vault = new dhx.Vault("vault_container", {
    uploader: {
        target: "https://docs.dhtmlx.com/vault/backend/upload"
    },
    downloadURL: "https://docs.dhtmlx.com",
    templates: {            progressBar: {              template: function(percent, extra) {                  return getBasis(extra.current) + "/" + getBasis(extra.total);              }          }      }  });

Related samples

See also
Change log

deprecated since v5.0

Back to top