F
Filament12mo ago
Kitty

Searchable & Required Select Bug

When using a select field with searchable and required in a Livewire custom page the required validation fails. Removing the searchable and it works. It also works fine in a resource panel. Code Forms\Components\Select::make('zipcode_id') ->relationship('zipcode', 'zipcode') ->label('Your Oregon Zipcode') ->required() ->searchable(), In the custom page, I can search and it fills the field with the value but is still fails the required validation so doesn't save and I get the required error message. File: https://github.com/griggsk/osp/blob/main/CreateChild.php Line 92 is where the zip is Console errors When selecting: - Uncaught TypeError: this.select is null - Uncaught (in promise) TypeError: this.select is null Any ideas on how to fix? Thanks
GitHub
osp/CreateChild.php at main · griggsk/osp
Contribute to griggsk/osp development by creating an account on GitHub.
2 Replies
Kitty
KittyOP12mo ago
Any feedback?
faizalamri
faizalamri2w ago
maybe you need to mount the form first. refer this. https://www.answeroverflow.com/m/1245567738391433308
ColorPicker Required Bug - Filament
Guys, I'm trying to use a color picker inside a Custom Livewire Page, using a form from Filament, and for some reason, the ColorPicker is not working as expected. All other fields are working like a charm, but specifically, the Color Picker is always required, even with a filled value. ``` Forms\Components\ColorPicker::make('primary_color') ...

Did you find this page helpful?