Hi
I am using CuteWebUI_AjaxUploader in which i would like to have the alert(popup )message when the upload task is completed .
I have tried the following sample code in java script but its not working .Any help would be really appreciated
function CuteWebUI_AjaxUploader_OnTaskComplete(obj)
{
ShowMessage("Complete : "+obj.FileName+" : "+obj.FileGuid);
}
function ShowMessage(msg)
{
alert(msg);
}