Check documentation for the latest version of dhtmlxSuite onImageUploadSuccess DHTMLX Docs

onImageUploadSuccess

fires when an image was uploaded correctly

void onImageUploadSuccess(string name,string value,mixed extra);
namestringthe identification name. Used for referring to item
valuestringthe name of the image to upload
extramixeduser-defined extra data

Example

myForm.attachEvent("onImageUploadSuccess", function(name, value, extra){
    // your code here
});

See also
Change log

added in version 5.1

Back to top