© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•14mo ago•
11 replies
Jpac14

Update text input dynamic based off other important

I have this form schema
                      Toggle::make('includeTable')
                        ->label('Include table')
                        ->default(true)
                        ->reactive()
                        ->live(),
                      Toggle::make('includeChart')
                        ->label('Include chart')
                        ->default(false)
                        ->reactive()
                        ->live(),
                      Select::make('animation')
                        ->label('Animation')
                        ->options([
                          'none' => 'None',
                          'confetti' => 'Confetti',
                          'Fireworks' => 'Fireworks',
                        ])
                        ->default('none')
                        ->reactive()
                        ->live()
                        ->columnSpanFull(),
                      TextInput::make('url')
                        ->label('URL')
                        ->readOnly()
                      Toggle::make('includeTable')
                        ->label('Include table')
                        ->default(true)
                        ->reactive()
                        ->live(),
                      Toggle::make('includeChart')
                        ->label('Include chart')
                        ->default(false)
                        ->reactive()
                        ->live(),
                      Select::make('animation')
                        ->label('Animation')
                        ->options([
                          'none' => 'None',
                          'confetti' => 'Confetti',
                          'Fireworks' => 'Fireworks',
                        ])
                        ->default('none')
                        ->reactive()
                        ->live()
                        ->columnSpanFull(),
                      TextInput::make('url')
                        ->label('URL')
                        ->readOnly()

I would like to update the url text input, based off the other input like crafting a url,
localhost:8000/embed?animation=fireworks
localhost:8000/embed?animation=fireworks
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

text input field update based on another text input
FilamentFFilament / ❓┊help
2y ago
Dynamic text input value
FilamentFFilament / ❓┊help
3y ago
Hide Text Form Input based on Selected Data from other Form Components
FilamentFFilament / ❓┊help
3y ago
Update RichEditor based on other field
FilamentFFilament / ❓┊help
2y ago