Can I get the value of a select and run a method? Not ubmitting a form.

This doen't even log after a change in the select
Select::make('contact.status'). //
->live()
->options(StatusEnum::class)
->afterStateUpdated(
function () {
logger('Here save new status!');
})
Select::make('contact.status'). //
->live()
->options(StatusEnum::class)
->afterStateUpdated(
function () {
logger('Here save new status!');
})
No error no logging
Solution:
no javascript errors on browser console?
Jump to solution
11 Replies
Bruno Pereira
Bruno Pereira2mo ago
Select::make('contact.status'). //
->live()
->options(StatusEnum::class)
->afterStateUpdated(
function ($state) {
logger('Here save new status!');
})
Select::make('contact.status'). //
->live()
->options(StatusEnum::class)
->afterStateUpdated(
function ($state) {
logger('Here save new status!');
})
$state is the value of the form field
ddoddsr
ddoddsrOP2mo ago
You would expect the logger in laravel.log and I don't get anything. As if the state is not Updating
Bruno Pereira
Bruno Pereira2mo ago
instead of logger use dd($state) that select is in a form?
ddoddsr
ddoddsrOP2mo ago
Funny, I just tried that, no dd().
Solution
Bruno Pereira
Bruno Pereira2mo ago
no javascript errors on browser console?
ddoddsr
ddoddsrOP2mo ago
THis is in a class EditWindow extends Component implements HasForms, HasActions so oes that make difference?
Bruno Pereira
Bruno Pereira2mo ago
if the form is configured correctly I dont think theres a problem.
ddoddsr
ddoddsrOP2mo ago
Javascrip error
Uncaught TypeError: Cannot read properties of null (reading 'status')
Uncaught TypeError: Cannot read properties of null (reading 'status')
So it is broken before selection. I have to populate the status first. I made a local public $status for the status and now I see it in dd()
Bruno Pereira
Bruno Pereira2mo ago
Nice
ddoddsr
ddoddsrOP2mo ago
Noticing the Javascript error .. I forget about the consle sometimes!

Did you find this page helpful?