回答編集履歴

1

記述例を見つけたため、追記。

2020/08/01 08:37

投稿

Yasumichi
Yasumichi

スコア1773

test CHANGED
@@ -11,3 +11,23 @@
11
11
 
12
12
 
13
13
  なのでおそらく `$this->Form->create()` のところに記述する必要があると推測します。
14
+
15
+
16
+
17
+ 【追記】
18
+
19
+ 古い記事のため、現在のバージョンで状況が変わっているかもしれませんが、例を見つけました。
20
+
21
+
22
+
23
+ [forms - CAKEPHP Confirming on Submit - Stack Overflow](https://stackoverflow.com/questions/21586935/cakephp-confirming-on-submit)
24
+
25
+
26
+
27
+ ```php
28
+
29
+ $this->Form->create('Shift', array(
30
+
31
+ 'onsubmit' => "return confirm(\"Creating shift for '$id' on \");"
32
+
33
+ ```