Check documentation for the latest version of dhtmlxSuite onClear DHTMLX Docs

onClear

when the user clears the list of files to upload (clicks on button )

void onClear();

Example

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

Details

Note, before the onClear event is invoked the (onFileRemove) event fires for all files in the list to upload.

Back to top