function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SFDC n12SFDC n12 

IE Browser issue

Hi,

I have a javascript written in a visualforce page which displays a report


The report is formatted and displays correctly in Mozilla and chrome

But in IE 9 its not formatted correctly (values are displaying correctly) , the table is not formatted

code is fine , but seems to be a browser issue

Let me know what needs to be done in this regard.

Thanks
AshlekhAshlekh
Hi,

Mostly IE doesn't support salesforce too much. I also have problem with IE
SFDC n12SFDC n12
what needs to be done on this regard, any idea 
Rajesh PotnuruRajesh Potnuru
Hello,

Better to use Google chrome

Thanks & Regards,
Rajesh
AshwaniAshwani
Try following line in Apex class controller.

Apexpages.currentPage().getHeaders().put('X-UA-Compatible', 'IE=9') ;


// OR

Apexpages.currentPage().getHeaders().put('X-UA-Compatible', 'Edge') ;


SFDC n12SFDC n12
i am not using a controller , i am using a javascript inside a VF page , so how do i handle  it.