Dashboards in Google Apps Script not rendering correctly in IE?

こ雲淡風輕ζ 提交于 2019-12-04 22:32:11

I can verify this as well. My dashboard is not rendering properly on IE v9.0.8112.16421 - some filters and charts will appear and disappear on the screen.

We use Chrome and IE8 (and I think it's permanently in quirks mode) at work, so I have this line to make IE8 render better:

var app = UiApp.createApplication();
//Will be true if the browser is IE8, false otherwise
app.setStandardsMode((UiApp.getUserAgent().indexOf("MSIE 8.0") > -1));

Try standards mode in different browsers, and set it to true as necessary.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!