is there a known issue with Dashboards in Google Apps Script not rendering correctly in IE? I have embedded the Dashboard App Script on a page in google sites. It renders correctly in Chrome and Firefox, but in IE the charts and filters / selectors do not look correct.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
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.
回答2:
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.