is there a simple way that at the end of an action I can put the focus on a specific text box? using the default pages (create and edit) and not having to define a custom one and have AlpineJs intervene? I tried to use autofocus and other tricks
// Recupera il listino prezzi selezionato $priceListId = $get('price_list_id'); if (!$priceListId) { Notification::make() ->title('Errore') ->body('Devi selezionare un listino prezzi prima di scansionare.')->danger() ->send(); return; } // Array per salvare le righe attuali del repeater $quotationLines = $get('quotation_lines') ?? []; // Trova l'articolo nel listino prezzi $articlePriceList = ArticlePriceList::with('article') ->where('price_list_id', $priceListId) ....... some other operation , and then i want the focus on this Forms\Components\TextInput::make('scanned') ->label('Aggiungi Articoli') ->suffixAction($scannedAction) ->autofocus(true) ->columnSpan(3),
i guess im missing something like $set('scanned')->focus()