Check documentation for the latest version of dhtmlxSuite onFileAdd DHTMLX Docs

onFileAdd

fires when the user adds a file to the upload queue

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

Example

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

Back to top