Matthew
Matthew
FFilament
Created by toeknee on 7/12/2024 in #❓┊help
Form to PDF
@toeknee Thanks for supplying this. It is similar to what I am doing, but I have an issue with the extensive CSS from filament and the other locations not being available. Other than creating the css and making them statically available (not keen), have you found a way around that ? @SoraKeyheart , does Typeset.sh go anyway to solve the CSS issue?
10 replies
FFilament
Created by toeknee on 7/12/2024 in #❓┊help
Form to PDF
Ahh..ok. Is that easily done, can you point me somewhere ?
10 replies
FFilament
Created by toeknee on 7/12/2024 in #❓┊help
Form to PDF
Hi @toeknee Did you progress with this? Looking for a solution to convert a completed form/page, into a stored PDF.
10 replies
FFilament
Created by Trauma Zombie on 11/5/2024 in #❓┊help
How to validate Select relation field?
hmmm...would have thought the ->relationship handled the re-build without an additional afterstate...nevermind though.
7 replies
FFilament
Created by Matthew on 11/5/2024 in #❓┊help
Filtering a Select Box
@Povilas K , @ralphjsmit - (cheeky, I could find this out myself with enough research, but you'll know straight away question)... do these solutions work where the Create form is already modal\slideover ? (I understand nesting modals is challenging) ??
11 replies
FFilament
Created by Matthew on 11/5/2024 in #❓┊help
Filtering a Select Box
Thanks for these suggestions..will get on this when the great dev time god allows a window
11 replies
FFilament
Created by toeknee on 11/5/2024 in #❓┊help
Relationship with a relationship after create?
I'm out then 😜
7 replies
FFilament
Created by Matthew on 11/5/2024 in #❓┊help
Override configureUsing ?
🤦‍♂️ I'd moved out a createAction to a re-useable component, and left the original one in for testing, so the original one was overwriting the parameters! Thanks for replying though.
5 replies
FFilament
Created by v4derr on 11/5/2024 in #❓┊help
Connectivity issue with FilamentPHP.com IP Address.
No description
8 replies
FFilament
Created by Trauma Zombie on 11/5/2024 in #❓┊help
How to validate Select relation field?
Add ->live to Forms\Components\Select::make('organization_id')
7 replies
FFilament
Created by toeknee on 11/5/2024 in #❓┊help
Relationship with a relationship after create?
Just use a custom handler ?
7 replies
FFilament
Created by Matthew on 10/26/2024 in #❓┊help
Using rules on data not inside the form
Thanks for the suggestion. I thought about that, then you've still got to pass the data somewhere in CreateAction. My resolution was to actually something I should have thought of before, which was to go direct to get the information I previously wanted to pass, within the form: ->where('cdt_type', enumCdtType::from($livewire->activeTab)->value)
4 replies
FFilament
Created by ddoddsr on 10/22/2024 in #❓┊help
Add a Create and edit button
Not sure what you mean....what is the use case for this ?
14 replies
FFilament
Created by Matthew on 10/23/2024 in #❓┊help
getTabs() and limiting CreateAction options
$livewire->$livewire->activeTab
4 replies
FFilament
Created by ChesterS on 8/12/2024 in #❓┊help
Access form data in modal action
Ah... or use a form action instead ?
9 replies
FFilament
Created by ChesterS on 8/12/2024 in #❓┊help
Access form data in modal action
Why not just use $get ?
9 replies
FFilament
Created by Roberto S. on 10/22/2024 in #❓┊help
Add Action to Select modal create and update
Not clear on exactly what you are trying to achieve...a screenshot would help
8 replies
FFilament
Created by Roberto S. on 10/22/2024 in #❓┊help
Add Action to Select modal create and update
8 replies
FFilament
Created by islandnuge on 10/18/2024 in #❓┊help
Customization beyond themes and css
4 replies
FFilament
Created by Matthew on 10/17/2024 in #❓┊help
Global filter...how to refresh on change though.
Answer: ->afterStateUpdated(function (Component $livewire) { $livewire->dispatch('locationrefresh'); }) in a blade: @push('scripts') <script> document.addEventListener('DOMContentLoaded', function () { Livewire.on('locationrefresh', refresh => { window.location.reload(true); }); }); </script> @endpush
5 replies