Check documentation for the latest version of dhtmlxSuite onUploadFail DHTMLX Docs

onUploadFail

fires when the file upload has failed

void onUploadFail(string realName);
realNamestringthe real name of the file (as it's displayed in the control)

Example

myForm.attachEvent("onUploadFail",function(realName){ // your code here });

Back to top