使用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
答案 0 :(得分:1)
在Google文档和表单中,侧边栏现在忽略setWidth()方法;它们无法从默认宽度300px更改。此更改已应用于上周发布的新版Sheets。
https://developers.google.com/apps-script/releases/#february_2014