在从Google Sheet包含的脚本启动的模态对话框中,是否有某种方法可以确定浏览器窗口或主机显示的大小?我希望能够将对话框的宽度设置为用户显示的百分比,因此支持各种机器。
$( window ).width()
和$( document ).width()
之类的常规jQuery技术会返回对话框的宽度,这不是我想要的(并且对于此环境是唯一的)。
尝试引用对话框外的任何div容器都会返回null
(我已尝试"#docs-editor-container"
,"modal-dialog-bg"
和其他几个。)
这是一个简单的脚本,用我到目前为止的结果重新创建这个对话框。
function openDialog() {
var htmlOutput = HtmlService.createHtmlOutputFromFile('Dialog')
.setWidth(500)
.setHeight(400);
SpreadsheetApp.getUi().showModalDialog(htmlOutput, 'How wide is the screen?');
return;
}
<div id="outer" style="padding:1;"/>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
$(function() {
reportSizeOf( 'window',$(window) ); // 500 - expected
reportSizeOf( 'document',$(document) ); // 500 - same as window
reportSizeOf( '#docs-editor-container',$('#docs-editor-container')); // null
reportSizeOf( 'modal-dialog-bg',$('modal-dialog-bg')); // null
});
function reportSizeOf( elname, element ) {
$('#outer').append('<br>Width of "' + elname + '": ' + element.width());
}
</script>
答案 0 :(得分:1)
如果加载项iframe来源相同,我们可以跳出2个iframe:
parent.parent.document.body.clientHeight
按照this post中的说明访问它。
由于不是,因此文档可能需要增强请求才能通过postmessage或其他一些跨源机制将最大大小调整传递到附加iframe。向现有maxHeight
类添加Browser
和宽度可能更直截了当,但认为这只是为了添加浏览器类型的小部件而设计的。
设置大于所需的宽度确实会回落到“文档”窗口的最大宽度,但它会导致关闭按钮不在视图范围内,以便用户强制按下esc。如果您想要Docs的90%最大高度/宽度视图,目前似乎不可能。
答案 1 :(得分:0)
您可以尝试使用CSS样式在Width = 100%和Height = 0%上获得屏幕开发的大小。然后使用document.getElementById(&#34; container&#34;)。offsetHeight
问题是您只能在SandBox EMULATE模式(HtmlService.SandboxMode.EMULATED)上使用它。
code.gs
function doGet() {
return HtmlService.createHtmlOutputFromFile('index')
.setSandboxMode(HtmlService.SandboxMode.EMULATED);
}
的index.html
<style>
#container{
width: 100%;
/* height: 100%; */
background-color: #ccccff;
}
</style>
<div id="container">
</div>
<script>
alert(document.getElementById("container").offsetWidth);
/* alert(document.getElementById("container").offsetHeight); */
</script>
在此示例中,您可以删除注释(/ * * /)并尝试获取Heigth大小。
要查看西班牙文和完整版,请查看https://sites.google.com/site/appsscriptenespanol/obtener-tamano-maximo-de-pantalla-en-apps-script-usando-htmlservice