Keep form Data after clicking create & create another

Is there a way to keep the previos Form Data after clicking create & create anoth on a Form.
Solution:
add in the CreatePage ```php protected function afterCreate(): void {...
Jump to solution
4 Replies
Solution
LeandroFerreira
add in the CreatePage
protected function afterCreate(): void
{
$this->getCreatedNotification()?->send();
$this->halt();
}
protected function afterCreate(): void
{
$this->getCreatedNotification()?->send();
$this->halt();
}
KoksAgent
KoksAgent3w ago
Thanks, that works But is there a way to clear two fields but keep the other fields.
LeandroFerreira
$this->data['your_field'] = null; ?
KoksAgent
KoksAgent3w ago
Oh yes