filament/filament
v3.2.0
v11.0
v3.4
PHP 8.3.0
I need to click a second time to modal open.
After the modal finally opens, the modal did not close if I click away (expected behavior), only if I click on close/cancel, it's nice!
But, if I try to open modal again (without refresh), now modal open on 1st click and close if I click away (I did not expect this behavior, I'm not using closeModalByClickingAway property
If I add the closeModalByClickingAway property, reload page and try to click away on 1st open, modal wont close
Open modal after click once on action button header
php artisan make:livewire-table UserTable --generate
php artisan make:form-layout UserForm
<div {{ $attributes }}>
@livewire(\App\Livewire\UserTable::class, ['record' => $getRecord()])
</div>
php artisan make:filament-resource User --generate
public static function form(Form $form): Form {
return $form
->schema([
Tabs::make('Tabs')
->tabs([
Tabs\Tab::make('New User')
->schema([
View::make('forms.components.user-form')
->columnSpanFull(),
])
->columnSpanFull(),
])
->columnSpanFull(),
]);
}
If I put the table to a page, works like a charm, but inside a Tab on a form doesnt work.
https://github.com/joao-antonio-gomes/laravel-playground
No response
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too