Forum

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.

Attachments with IE...
 
Notifications
Clear all

Attachments with IE 8

2 Posts
2 Users
0 Reactions
3,392 Views
 Dan
(@caccia)
Posts: 340
Contributor
Topic starter
 
[#1850]

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 ?


 
Posted : 17 Jun 2014 20H00
(@babynus)
Posts: 14952
Member Admin
 

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.


 
Posted : 17 Jun 2014 20H11
Share:

Scroll to Top