searchable on SelectColumn?

Is searchable not a working method on a SelectColumn? No matter where I put 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 and options and it still doesn't work. It's displayed as a normal select box without search capability.
1 Reply
Tetracyclic
Tetracyclic3mo ago
Unfortunately SelectColumn doesn't support searching.