Skip to content

Commit f6517b0

Browse files
committed
Docs
1 parent 5ff784a commit f6517b0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

docs/Component/Ajax.md

+15
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,21 @@ All you need to do here is
5353
- Add some custom JS to catch the "post link JS"
5454
- Make sure the AjaxComponent is loaded for this action
5555

56+
The default bake action usually already works perfectly:
57+
58+
```php
59+
public function delete($id = null) {
60+
$this->request->allowMethod(['post', 'delete']);
61+
$group = $this->Groups->get($id);
62+
63+
$this->Groups->delete($group);
64+
$this->Flash->success(__('The group has been deleted.'));
65+
66+
return $this->redirect(['action' => 'index']);
67+
}
68+
```
69+
70+
If you have some custom "fail" logic, though, you need to do a small adjustment.
5671
Then just modify your delete action to pass down the error to the view for cases where this is needed:
5772
```php
5873
public function delete($id = null) {

0 commit comments

Comments
 (0)