-
Notifications
You must be signed in to change notification settings - Fork 111
CRUD - delete not working #911
Copy link
Copy link
Closed
Description
Consider this model:
class User extends BaseModel
{
/** @var string */
public $table = 'user';
public function init()
{
parent::init();
$this->addField('email', ['required' => true]);
}
Currently, when:
- User model is present/saved and:
- delete button is pressed and delete is confirmed
then:
the CRUD shows edit dialog, instead of sending a request to server to delete the model immediatelly.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels