Richeditor live update
Hey everyone! π
I'm running into a weird issue with Filament forms and could use some help. I have a Select field that's set to
->live()
and a RichEditor that should reactively update when the select value changes, but the RichEditor isn't triggering its query when I change the select option.
Here's my code:
Has anyone encountered this before? Am I missing something obvious? π€
Thanks in advance for any help!Solution:Jump to solution
I think you need to set on afterStateUpdated on the select. so
```php
Select::make('from')
->label(__('From'))
->live()...
2 Replies