使用Google应用脚本在Google表格中不会更改边栏宽度

时间:2017-04-10 13:51:54

标签: javascript html google-apps-script

使用Google应用脚本在Google表格中不会更改补充工具栏宽度

function onOpen()
{
  var html = HtmlService.createHtmlOutputFromFile('side').setTitle('Custom sidebar').setWidth(150);
  SpreadsheetApp.getUi().showSidebar(html);
}

这是工作表,代码在此工作表的工具>脚本编辑器中。     https://docs.google.com/spreadsheets/d/1hCOU5mUQxaXRz6JTyO6IZphVkfiii1RS5OsLhMJWFNY/edit?usp=sharing

1 个答案:

答案 0 :(得分:1)

在Google文档和表单中,侧边栏现在忽略setWidth()方法;它们无法从默认宽度300px更改。此更改已应用于上周发布的新版Sheets。

https://developers.google.com/apps-script/releases/#february_2014