显示新记录的确认

时间:2019-06-01 01:59:51

标签: google-app-maker

我参考本文是为了寻找一种在记录创建时显示确认消息的方法。否则,用户将无法确定是否创建了新记录以及如何引用它。

https://developers.google.com/appmaker/scripting/client#asynchronous_operations

并在Save onClick按钮中实现了此代码

widget.datasource.createItem(function (record) {
  alert('Record with ID ' + record.id + ' was created in the database.');
});

在标准创建表单上,数据源被继承:客户端(创建)

并且警报显示

Client Record with ID undefined was created in the database

记录已创建。

但是有什么方法可以使这段代码起作用。我不想求助于手动保存模式。我猜是createItem

0 个答案:

没有答案