© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•15mo ago•
2 replies
jsheffers

Possible to use searchable select in custom Alpine component?

New to filament and Alpine, but i'm trying to create a custom form "Alpine only" no livewire form. I'd like to use the select component from filament with the searchable functionality. Is this possible?

<x-filament-forms::field-wrapper label="Address 1">
        <x-filament::input.wrapper>
          <x-filament::input.select
            x-model="address_1"
            @change="handleAddress1Change($event.target.value)">
            <option value="">Select an address</option>
            <template x-for="(item, index) in address1Options" :key="index">
              <option :value="item" x-text="item"></option>
            </template>
          </x-filament::input.select>
        </x-filament::input.wrapper>
      </x-filament-forms::field-wrapper>
<x-filament-forms::field-wrapper label="Address 1">
        <x-filament::input.wrapper>
          <x-filament::input.select
            x-model="address_1"
            @change="handleAddress1Change($event.target.value)">
            <option value="">Select an address</option>
            <template x-for="(item, index) in address1Options" :key="index">
              <option :value="item" x-text="item"></option>
            </template>
          </x-filament::input.select>
        </x-filament::input.wrapper>
      </x-filament-forms::field-wrapper>

This gives me the standard select with single options, but it doesn't invoke the searchable ui. Any ideas how to do this?
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

Select Blade Component - Searchable
FilamentFFilament / ❓┊help
2y ago
Custom Searchable Input/Select
FilamentFFilament / ❓┊help
15mo ago
Select component with searchable & live?
FilamentFFilament / ❓┊help
3y ago
Select in custom livewire component with searchable removes wire.model
FilamentFFilament / ❓┊help
2y ago