Check documentation for the latest version of dhtmlxSuite onUploadCancel DHTMLX Docs

onUploadCancel

fires when the user cancels uploading of a file (clicks the button ).

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

Example

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

See also
Back to top