回答編集履歴
1
記述例を見つけたため、追記。
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
|
+
```
|