Hurruwa
Hurruwa
FFilament
Created by Daniel Reales on 2/18/2024 in #❓┊help
No refresh component
Thanks for the reply. When you say above the function do you mean the component class or above the function executing the action? Another question with that you still need to have the "protected $listeners" or is not needed? Again, thanks a lot for your answer.
6 replies
FFilament
Created by Daniel Reales on 2/18/2024 in #❓┊help
No refresh component
Hi @Daniel Reales have you found a solution for this? I have the same issue, i have a Livewire component and i want to refresh it upon an action is complete... but it does not work.... Thanks in advance
6 replies
FFilament
Created by Hurruwa on 7/22/2024 in #❓┊help
ExportAction export different model
Not on my side, i couldn't test any further. I have been looking to filament's changelog and didn't see any fix related to this, But i havent test it again since then. Sorry.
15 replies
FFilament
Created by King Dice on 7/17/2024 in #❓┊help
Summarize course revenue
Ok, thanks, ill find another way to deal with this. Thansk anyhow. 😉
4 replies
FFilament
Created by King Dice on 7/17/2024 in #❓┊help
Summarize course revenue
Haya, have you found a way to solve this yet? Im facing the same issue. Thanks in advance
4 replies
FFilament
Created by Hurruwa on 7/22/2024 in #❓┊help
ExportAction export different model
Thanks for your reply XD
15 replies
FFilament
Created by Hurruwa on 7/22/2024 in #❓┊help
ExportAction export different model
yeah. I stoped testing due to timing, but ill test again this weekend and give you guys feedback on it if i found something
15 replies
FFilament
Created by Hurruwa on 7/22/2024 in #❓┊help
ExportAction export different model
cleared and started again
15 replies
FFilament
Created by Hurruwa on 7/22/2024 in #❓┊help
ExportAction export different model
i stoped the queue,
15 replies
FFilament
Created by Hurruwa on 7/22/2024 in #❓┊help
ExportAction export different model
Im sorry, both
15 replies
FFilament
Created by Hurruwa on 7/22/2024 in #❓┊help
ExportAction export different model
At the end i just created a new resource for the correct model and add the export there. Havent tried the Import dough may be happening the same
15 replies
FFilament
Created by Hurruwa on 7/22/2024 in #❓┊help
ExportAction export different model
Its very strange, I can share both the code and the git so you can see it.
15 replies
FFilament
Created by Hurruwa on 7/22/2024 in #❓┊help
ExportAction export different model
Yes, the queue was cleared, same the app. I Even created a NEW export from the start pointing to the right model, but used on the product's list page it will export the products info
15 replies
FFilament
Created by yagrasdemonde on 2/29/2024 in #❓┊help
Problem refreshing component
Hi @yagrasdemonde did you mamange to find a solution for this? Thanks in advance, im having the same probelm.. sort of... XD
10 replies
FFilament
Created by Hurruwa on 4/4/2024 in #❓┊help
Custom Infolist Entry Action
Im also following the ->registerActions() steps from the docs and im able to render de action but it does nothing. Docs im following: https://filamentphp.com/docs/3.x/infolists/actions#adding-an-action-to-a-custom-infolist-component This is my new code for that: Infolist Schema:
ActionListEntry::make('actions')
->registerActions([
Action::make('viewAction')
->iconButton()
->icon('heroicon-o-eye')
->modalHeading('View Action')
->modalDescription('View the activity details.')
->slideOver()
->modalWidth('xl')
->action(fn($record) => dd($record)),
//->modalContent(fn($record) => view('filament.pages.view-activity' , ['activity' => $record])),
])
ActionListEntry::make('actions')
->registerActions([
Action::make('viewAction')
->iconButton()
->icon('heroicon-o-eye')
->modalHeading('View Action')
->modalDescription('View the activity details.')
->slideOver()
->modalWidth('xl')
->action(fn($record) => dd($record)),
//->modalContent(fn($record) => view('filament.pages.view-activity' , ['activity' => $record])),
])
Blade view
{{ $getAction('viewAction') }}
{{ $getAction('viewAction') }}
5 replies
FFilament
Created by Hurruwa on 4/4/2024 in #❓┊help
Custom Infolist Entry Action
No description
5 replies
FFilament
Created by Hurruwa on 2/29/2024 in #❓┊help
Backdrop on action running
I do have both the div with the wire:loading and the livewire action, but they dont seams to link... here is the code for both: Modal view
<div>
<div class="hidden fixed inset-0 z-50 flex items-center justify-center" wire:loading.class="visible">
<div class="bg-black bg-opacity-50"></div>
<div class="animate-spin rounded-full h-32 w-32 border-t-2 border-b-2 border-gray-900"></div>
</div>
<div class="fixed inset-0 z-50 flex items-center justify-center">
<div class="modal-content">
<p>Modal content here...</p>
</div>
</div>
</div>
<div>
<div class="hidden fixed inset-0 z-50 flex items-center justify-center" wire:loading.class="visible">
<div class="bg-black bg-opacity-50"></div>
<div class="animate-spin rounded-full h-32 w-32 border-t-2 border-b-2 border-gray-900"></div>
</div>
<div class="fixed inset-0 z-50 flex items-center justify-center">
<div class="modal-content">
<p>Modal content here...</p>
</div>
</div>
</div>
Action
Forms\Components\Actions\Action::make('generateContent')
->label('Generate Content')
->icon('heroicon-o-pencil-square')
->color('primary')
->action(function ($livewire) {
$livewire->generateContent();
})
Forms\Components\Actions\Action::make('generateContent')
->label('Generate Content')
->icon('heroicon-o-pencil-square')
->color('primary')
->action(function ($livewire) {
$livewire->generateContent();
})
Thanks in advance.
4 replies
FFilament
Created by Hurruwa on 12/7/2023 in #❓┊help
is there a way to have the table to handle a collection instead of query?
Thanks, will do
5 replies
FFilament
Created by Hurruwa on 10/5/2023 in #❓┊help
Its normal to have filament Js files on the public folder?
thanks for the answer dough
10 replies
FFilament
Created by Hurruwa on 10/5/2023 in #❓┊help
Its normal to have filament Js files on the public folder?
... great i just delete them all hahaha
10 replies