This commit is contained in:
2026-03-02 17:22:04 +08:00
commit b1fff83eba
13 changed files with 3840 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
(function () {
"use strict";
/**
* 一覧画面の編集保存時の処理
*/
kintone.events.on("app.record.index.edit.submit", function (event) {
event.error = "一覧画面からの編集機能は制限しております。";
return event;
});
})();