Tom
Tom
FFilament
Created by Tom on 2/28/2024 in #❓┊help
Customize modal step forward and back button labels?
yea, ideally they would be different for each step, i may make a pr for this
8 replies
FFilament
Created by Tom on 2/28/2024 in #❓┊help
Customize modal step forward and back button labels?
Its just steps, and with the step class does not look like I can change the prev and next button labels
8 replies
FFilament
Created by Tom on 2/28/2024 in #❓┊help
Customize modal step forward and back button labels?
So it looks like it doesnt have access to the wizard functions
return Action::make('enter')
->model(Entry::class)
->label(__('foo'))
->color('success')
->size(ActionSize::Large)
->steps([
Step::make('Account Details')
return Action::make('enter')
->model(Entry::class)
->label(__('foo'))
->color('success')
->size(ActionSize::Large)
->steps([
Step::make('Account Details')
8 replies
FFilament
Created by Tom on 10/13/2023 in #❓┊help
Table listeners
thanks
4 replies
FFilament
Created by Tom on 10/10/2023 in #❓┊help
Realtime field validation.
Worked perfectly. I really appreciate it.
7 replies
FFilament
Created by Tom on 10/10/2023 in #❓┊help
Realtime field validation.
Textarea::make('public_key')
->label(__('Public Key'))
->maxLength(255)
->rows(10)
->required()
->rules([new PublicKey])
->afterStateUpdated(function ($livewire) {
$livewire->validateOnly('data.public_key');
})
Textarea::make('public_key')
->label(__('Public Key'))
->maxLength(255)
->rows(10)
->required()
->rules([new PublicKey])
->afterStateUpdated(function ($livewire) {
$livewire->validateOnly('data.public_key');
})
7 replies