blink
blink
FFilament
Created by blink on 10/17/2024 in #❓┊help
Persistent bulk action
Thanks for sharing. I solved it by publishing filament table views and implementing persistency checks in the blade file. When I need persistent bulk actions, I add a property to the list record class of resource. @if ((! $isReordering) && count($bulkActions)) <x-filament-tables::actions x-data="{ persistent: {{ $persistentBulkActions }} }" :actions="$bulkActions" x-cloak="x-cloak" x-show="selectedRecords.length || persistent" /> @endif
8 replies
FFilament
Created by blink on 12/7/2024 in #❓┊help
->downloadable() image is opened within browser rather than download
Got it. It is file upload filed so doing this for each file does not make sense
10 replies
FFilament
Created by blink on 12/7/2024 in #❓┊help
->downloadable() image is opened within browser rather than download
Thanks for replying, I've access to bucket, can you suggest how can I resolve this?
10 replies
FFilament
Created by blink on 10/17/2024 in #❓┊help
Persistent bulk action
>sounds like you want header actions I whant existing bulk actions to be rendered even if row is not slected, it will be disabled until I select a record
8 replies
FFilament
Created by blink on 10/17/2024 in #❓┊help
Persistent bulk action
You can place bulk actions as header actions without issue, they will be disabled until u select a record. What I need is to show buttons in the bulk action row, header actions are rendered above the search bar and look ugly
8 replies
FFilament
Created by Glebka on 9/5/2024 in #❓┊help
Change label of the save button in edit form
What if I need to change label only for certain recources?
8 replies
FFilament
Created by czehnter on 9/25/2024 in #❓┊help
Triggering afterStateUpdated() with $set()?
Depends on what you need to achieve within afterStateUpdated() method
7 replies
FFilament
Created by czehnter on 9/25/2024 in #❓┊help
Triggering afterStateUpdated() with $set()?
7 replies
FFilament
Created by czehnter on 9/25/2024 in #❓┊help
Triggering afterStateUpdated() with $set()?
they say in docs - programaticly setting values wont trigger afterStateUpdated()
7 replies
FFilament
Created by faakher on 8/19/2023 in #❓┊help
live unique email validation
Or validate each field on blur
5 replies
FFilament
Created by faakher on 8/19/2023 in #❓┊help
live unique email validation
What about live validation for all inputs? Should I add after stateUpdated method to all inputs?
5 replies
FFilament
Created by blink on 9/24/2024 in #❓┊help
Form builder does not allow decimals. (?)
Nothing custom in model class, decimal(10,2) column. I decided to use text input with masking.
22 replies
FFilament
Created by blink on 9/24/2024 in #❓┊help
Form builder does not allow decimals. (?)
i see u dd() something does it acrtually work? not returning validation error?
22 replies
FFilament
Created by blink on 9/24/2024 in #❓┊help
Form builder does not allow decimals. (?)
Same - input mode is 'decimal' by default when using ->numeric()
22 replies
FFilament
Created by blink on 9/24/2024 in #❓┊help
Form builder does not allow decimals. (?)
I dont think you got me
22 replies
FFilament
Created by blink on 9/24/2024 in #❓┊help
Form builder does not allow decimals. (?)
I've seen docs, filamnet suggests using ->numeric() for numeric fields, my problem is not being able to save decimals
22 replies
FFilament
Created by blink on 9/24/2024 in #❓┊help
Form builder does not allow decimals. (?)
What do you mean exactly? Sould I add min-max validation to enable decimals?
22 replies
FFilament
Created by blink on 9/24/2024 in #❓┊help
Form builder does not allow decimals. (?)
Migration $table->decimal('salary_from', 10, 2); $table->decimal('salary_to', 10, 2);
22 replies
FFilament
Created by blink on 9/24/2024 in #❓┊help
Form builder does not allow decimals. (?)
Here is the whole resource file
22 replies
FFilament
Created by blink on 9/24/2024 in #❓┊help
Form builder does not allow decimals. (?)
22 replies