© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
2 replies
Jon Mason

searchable on SelectColumn?

Is searchable not a working method on a SelectColumn? No matter where I put
searchable()
searchable()
it doesn't seem to work.

                SelectColumn::make('account_ref_id')->label('Quick Edit')
                    ->searchable()
                    ->options($this->accounts)
                    
                    ->beforeStateUpdated(function ($record, $state) {
                        $record->is_complete = 1;
                    })
                    ->afterStateUpdated(function () {
                        $this->resetTable();
                    })
                    ->disabled(fn ($record) => $record->is_complete)
                SelectColumn::make('account_ref_id')->label('Quick Edit')
                    ->searchable()
                    ->options($this->accounts)
                    
                    ->beforeStateUpdated(function ($record, $state) {
                        $record->is_complete = 1;
                    })
                    ->afterStateUpdated(function () {
                        $this->resetTable();
                    })
                    ->disabled(fn ($record) => $record->is_complete)


I can also just take everything off except
searchable
searchable
and
options
options
and it still doesn't work. It's displayed as a normal select box without search capability.
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Can I am using searchable method, in SelectColumn?
FilamentFFilament / ❓┊help
3y ago
Testing the update on SelectColumn
FilamentFFilament / ❓┊help
2y ago
additional function on SelectColumn change
FilamentFFilament / ❓┊help
3y ago
SelectColumn native
FilamentFFilament / ❓┊help
2y ago