谁能建议如何在 Google Apps 脚本 [Gmail 插件] 中并排添加两个小部件/输入文本框?
示例代码:
var section = CardService.newCardSection();
section.addWidget(
CardService.newTextInput()
.setTitle("Title1")
.setFieldName("field1")
);
section.addWidget(
CardService.newTextInput()
.setTitle("Title2")
.setFieldName("title2")
);
上面的 Google Apps 脚本代码在 Gmail 插件中创建了两个 InputText 字段,一个在另一个之下。
有什么方法可以在同一行中创建两个 TextInputFields/Dropdowns/Widgets?[彼此相邻]
像这样的东西:
谢谢,