Lukas Jankauskas
Lukas Jankauskas
FFilament
Created by Lukas Jankauskas on 11/9/2024 in #❓┊help
FileUpload does not fully initialise in collapsed Form Repeater/Builder on edit
Bump in case anyone has any thoughts?
3 replies
FFilament
Created by Lukas Jankauskas on 11/9/2024 in #❓┊help
FileUpload does not fully initialise in collapsed Form Repeater/Builder on edit
No description
3 replies
FFilament
Created by TNDJXD on 3/26/2024 in #❓┊help
How to collapse section on button click
Bit late to the party, but the section has x-on:collapse-section.window so you just need to give section an ID (in my use case I settled on the ID of the record being edited) and dispatch livewire event ->dispatch('collapse-section', ['id' => $record->id])
4 replies
FFilament
Created by Clay Bitner on 1/17/2024 in #❓┊help
Adding a search to Tenant Menu
@Clay Bitner any chance you can share that bit of code? Would save me some time 😄
5 replies
FFilament
Created by Ray.nl on 4/5/2024 in #❓┊help
export modifyQuery with options
Ah, I see I mistyped originally - it's not modifyQueryString but modifyQueryUsing
14 replies
FFilament
Created by Ray.nl on 4/5/2024 in #❓┊help
export modifyQuery with options
in there you can also pass Action $action and do $action->getOptions()
14 replies
FFilament
Created by Ray.nl on 4/5/2024 in #❓┊help
export modifyQuery with options
Yes https://filamentphp.com/docs/3.x/actions/prebuilt-actions/export#modifying-the-export-query
ExportAction::make()
->exporter(ProductExporter::class)
->modifyQueryUsing(fn (Builder $query) => $query->where('is_active', true))
ExportAction::make()
->exporter(ProductExporter::class)
->modifyQueryUsing(fn (Builder $query) => $query->where('is_active', true))
14 replies
FFilament
Created by Ray.nl on 4/5/2024 in #❓┊help
export modifyQuery with options
$action->getOptions() does the trick for me in modifyQueryString
14 replies
FFilament
Created by Lukas Jankauskas on 10/8/2023 in #❓┊help
TextColumn tooltip displays content and theme
Sorted after some more digging - I had a burried custom directive in my JS files which messed with x-tooltip
18 replies
FFilament
Created by Lukas Jankauskas on 10/8/2023 in #❓┊help
TextColumn tooltip displays content and theme
Just ended up publishing vendor files and changing
<div
@if (filled($tooltip))
x-data="{}"
x-tooltip="{
content: @js($tooltip),
theme: $store.theme,
}"
@endif
{{ $attributes->class(['fi-ta-col-wrp']) }}
>
<div
@if (filled($tooltip))
x-data="{}"
x-tooltip="{
content: @js($tooltip),
theme: $store.theme,
}"
@endif
{{ $attributes->class(['fi-ta-col-wrp']) }}
>
to
<div
@if (filled($tooltip))
x-data="{}"
x-tooltip="{{$tooltip}}"
@endif
{{ $attributes->class(['fi-ta-col-wrp']) }}
>
<div
@if (filled($tooltip))
x-data="{}"
x-tooltip="{{$tooltip}}"
@endif
{{ $attributes->class(['fi-ta-col-wrp']) }}
>
in filament-tables/components/columns/column.blade.php Will do the trick for now till there's a solution/fix
18 replies
FFilament
Created by Lukas Jankauskas on 10/8/2023 in #❓┊help
TextColumn tooltip displays content and theme
Only got tables and notifications installed from the filament toolkit
18 replies
FFilament
Created by Lukas Jankauskas on 10/8/2023 in #❓┊help
TextColumn tooltip displays content and theme
Yes, php artisan filament:upgrade supposedly does it; I also did it manually.
18 replies
FFilament
Created by Lukas Jankauskas on 10/8/2023 in #❓┊help
TextColumn tooltip displays content and theme
Already did everything I can figure
18 replies
FFilament
Created by Lukas Jankauskas on 10/8/2023 in #❓┊help
TextColumn tooltip displays content and theme
Yes
18 replies
FFilament
Created by Lukas Jankauskas on 10/8/2023 in #❓┊help
TextColumn tooltip displays content and theme
No description
18 replies
FFilament
Created by Lukas Jankauskas on 6/20/2023 in #❓┊help
Pass data to widget
Np. I eventually opted for events as I needed reactivity
7 replies
FFilament
Created by Lukas Jankauskas on 6/20/2023 in #❓┊help
Pass data to widget
Silly me. Figured it out. Register same public properties in widgets; and use :widget-data in the custom page
7 replies