Hi,
You can get the name of the file, but not the path.
Please try this sample code :
function CuteWebUI_AjaxUploader_OnSelect(files)
{
alert(files[0].FileName);
}
function CuteWebUI_AjaxUploader_OnQueueUI(files)
{
//files[0].FileName
}
Regards,
Terry