Check documentation for the latest version of dhtmlxSuite getStatus DHTMLX Docs

getStatus

returns the status of uploading

number getStatus(string name);
namestringthe item's name
numberthe status of uploading

Example

var status = myForm.getUploaderStatus(name);
// or
var myUploader = myForm.getUploader(name);
var status = myUploader.getStatus();

Details

the values of the uploading status are:

  • 0 - no files to upload
  • 1 - all files in the list were uploaded
  • -1 - not all files in the list were uploaded
Back to top