hello,
we have a problem using the std-upload of dhtmlxForm (the actual professional version);
the uploading should call an aspx-file, and it works great in Chrome and Firefox, but with IE ver 9 the event onUploadFail will be fired;
I suppose, it has something to do with paths;
the aspx is in the main directory, the flash-file and js is in the subdir “Js”
what is the difference between these browser, regarding the upload-version of dhtmlxForm?
var objFormDataUpload =
[
{
type: "fieldset",
label: "Upload",
className: "edit_upload",
width: 800,
offsetTop: 10,
offsetLeft: 10,
list: [
{
type: "upload",
name: "uploadFiles",
titleScreen: false,
inputWidth: 750,
inputHeight: 200,
autoRemove: true,
swfPath:‘Js/uploader.swf’,
url:‘Job.Aspx?WHAT=UPLOAD’,
swfUrl:’…/Job.Aspx?WHAT=UPLOAD’
}
]
}
];