F
Filament8mo ago
ericmp

->autofocus doesnt work with modals

public function table(Table $table): Table
{
return $table
->actions([
EditAction::make('edit')
->form([
TextInput::make('name')
->required()
->maxLength(255)
->autofocus() // this wont work
public function table(Table $table): Table
{
return $table
->actions([
EditAction::make('edit')
->form([
TextInput::make('name')
->required()
->maxLength(255)
->autofocus() // this wont work
so the question is, in what cases the autofocus works?
1 Reply
ericmp
ericmp7mo ago
anyone?