Google App Maker:如何更新一个字段的多行?

时间:2018-08-25 10:13:09

标签: google-app-maker

我有一张带有过滤结果的表。

我需要在客户端脚本中更新表的所有行“Payé”。

我知道如何更新“Payé”字段的第一活动行。但是我需要一次(在回调函数中)更新该字段的所有行

你能帮我吗?

Here is the screen shot of what I need

谢谢

1 个答案:

答案 0 :(得分:0)

这应该可以解决问题:

var rows = app.datasources.TABLE_NAME.items;
for(var i = 0; i < rows.length; i++){
   rows[i].Paye = true;
}