Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Hi,
For some reason, on an older version of Internet Explorer (8), it is not possible to attach files.
Works ok on IE 11, but unfortunately some people need to use IE8 on customer site...
Would you have any ideas ?
Attachments uses HTML5 capacities when available, and standard when not.
It is defined in js function :
function isHtml5() {
if (dojo.isIE && dojo.isIE<=9) {
return false;
} else if (dojo.isFF && dojo.isFF<4) {
return false;
} else {
return true;
}
}
Check that is gives correct result on your environment.