Hurruwa
Hurruwa
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
FFilament
Created by Hurruwa on 9/13/2023 in #❓┊help
Overview Stats Widget Responsive
Thanks a lot
17 replies
FFilament
Created by Hurruwa on 9/13/2023 in #❓┊help
Overview Stats Widget Responsive
17 replies
FFilament
Created by Hurruwa on 9/13/2023 in #❓┊help
Overview Stats Widget Responsive
My thoghts exactly... thanks anyhow both 😉
17 replies
FFilament
Created by Hurruwa on 9/13/2023 in #❓┊help
Overview Stats Widget Responsive
I have been playing with columnSpan and getColumns() but i cant manage to get it right the way i need it
17 replies
FFilament
Created by Hurruwa on 9/13/2023 in #❓┊help
Overview Stats Widget Responsive
I dont even know if that is possible
17 replies
FFilament
Created by Hurruwa on 9/13/2023 in #❓┊help
Overview Stats Widget Responsive
ahha that's 1/3, 1/3, 1/3, What i need is one card to have 2/3 and the other one just 1/3
17 replies
FFilament
Created by Hurruwa on 9/13/2023 in #❓┊help
Overview Stats Widget Responsive
no, in a 3 columns array they shoul be 2/3 and 1/3
17 replies
FFilament
Created by Hurruwa on 9/10/2023 in #❓┊help
navbrar theme broken ?
Its due to the Debugbar, without it its working fine.
5 replies
FFilament
Created by Hurruwa on 9/10/2023 in #❓┊help
navbrar theme broken ?
No description
5 replies
FFilament
Created by Hurruwa on 8/29/2023 in #❓┊help
Get selected text using RichText Editor?
Thanks Dennis, i have already cover that part. 😉 now im trying to hack my way into adding a custom toolbar action to the component hahaha
4 replies
FFilament
Created by Hurruwa on 8/16/2023 in #❓┊help
Dinamicaly add values to a radio component
Thanks, you are right i did just like that. ç
5 replies
FFilament
Created by Mdk on 8/10/2023 in #❓┊help
Empty CSS when creating a new theme, not extending the default
Hope it helps
52 replies
FFilament
Created by Mdk on 8/10/2023 in #❓┊help
Empty CSS when creating a new theme, not extending the default
One question.. i know that this its resolved... but for the only thing that fix the problem was changing the resulting file from the new theme from. this:
/*From this*/
@config '/.tailwind.config.js';
/*To this*/
@config 'tailwind.config.js';
/*From this*/
@config '/.tailwind.config.js';
/*To this*/
@config 'tailwind.config.js';
52 replies