Form does not revalidate after change value
I have set unique(ignoreRecord:true), when it to validate with red message the submit button is also disabled. The problem is even I have change the value of the field to unique value, but the validation does not recheck and submit button is still disabled. Please advise how I could cope this.
Solution:Jump to solution
remove this modified function it works.
protected function getCreateFormAction(): Action
{
return Action::make('create')
->label(__('filament-panels::resources/pages/create-record.form.actions.create.label'))...
2 Replies
Solution
remove this modified function it works.
protected function getCreateFormAction(): Action
{
return Action::make('create')
->label(__('filament-panels::resources/pages/create-record.form.actions.create.label'))
->submit('create')
->keyBindings(['mod+s']);
}