AgilePoint Dashboard WebPart is built on top of html 5 features and to support viewing of AgilePoint Dashboard WebPart, user must have IE 10 or later versions installed in the SharePoint server.
However, within SharePoint 2010, pages are always rendered using IE8 standards document mode by default even if higher versions of IE are installed in SharePoint server.
To display AgilePoint dashboard webpart within SharePoint using IE browser, we have to modify SharePoint 2010’s master page to render pages using IE10 standards.
Following are the steps to modify SharePoint’s master page.
Using instructions in this link (https://support.office.com/en-us/article/Customize-a-master-page-to-brand-your-site-0a57b837-4c97-4af9-a088-fedf3dfd1dd5) user can modify master page.
Edit the primary master page
- Open your site in SharePoint Designer, and then click Master Pages in the Navigation pane.
- Click v4.master to see summary information in the Master Page Gallery.
- Click Edit File in the ribbon to open the master page.
This opens the master page in the SharePoint Designer 2010 full-screen page editor. Here, you can edit the page in Design view, Split view, or Code view. With design-time support, you can see what the master page looks like as you customize it. There are also tools you can use to customize tags, styles, scripts, and content regions, as shown below:
Click on Code View and modify the following line to
<meta http-equiv=”x-ua-compatible” content=”IE=8” >
To
<meta http-equiv=”x-ua-compatible” content=”IE=10″ >