jlove1672
jlove1672
FFilament
Created by jlove1672 on 5/2/2024 in #❓┊help
Do text inputs have a clear input option
Do form text inputs have a clear input feature (like an x at the end of the input to clear the field) ?
5 replies
FFilament
Created by jlove1672 on 4/18/2024 in #❓┊help
In a custom form column how can i access the index of the current record in the loop
title ^
4 replies
FFilament
Created by jlove1672 on 4/4/2024 in #❓┊help
is it possible to access a query param on the create page to influence how a form is displayed
^
3 replies
FFilament
Created by jlove1672 on 4/4/2024 in #❓┊help
Is it possible to call a header action from a resource list page (that opens a modal)
Ive placed this in my resources list page protected function getHeaderActions(): array { return [ \Filament\Actions\Action::make('create_vendor_group') ->form([ Select::make('organisation') ->label('Author') ->options(app(OrganisationRepository::class)->getSelectArray()) ->required(), ]) ->action(function (array $data, Organisation $record): void { $record->author()->associate($data['authorId']); $record->save(); }) ]; } But im getting an error - Unknown named parameter $mountedAction which is coming from -   filament-tables/ index.blade.php   My question is it is possible to open cusotm modal action on a list page?
2 replies
FFilament
Created by jlove1672 on 3/27/2024 in #❓┊help
How can i determine which page im on (edit or view) within a custom form component?
How can i determine which page im on (edit or view) within a custom form component?
3 replies
FFilament
Created by jlove1672 on 2/21/2024 in #❓┊help
Render multiple relationship manager on one page
Hey is it possible to render multiple relationship managers one after the other on the same page without the tabs?
2 replies
FFilament
Created by jlove1672 on 2/13/2024 in #❓┊help
RichEditor gives 403 on production
In our system we use RichEditor to save links However on production/live site we receive a 403 on livewire/update if our RichEditor contains a link (<a href..) Does the rich editor need specific file access when working with/saving links?
2 replies
FFilament
Created by jlove1672 on 1/11/2024 in #❓┊help
Change side group "open" button
In docs there is an alias for the sidebar group collapse button: panels::sidebar.group.collapse-button - Collapse button for a sidebar group But is there a way i can target and change the button that opens the sidebar group when closed?
1 replies
FFilament
Created by jlove1672 on 1/9/2024 in #❓┊help
Call modal from anywhere on filament admin panel
Hey i was wondering if it was possible to create an modal action, register it globally within my filament admin panel, and call/trigger it using a key-bind/keydown event from js
7 replies
FFilament
Created by jlove1672 on 1/4/2024 in #❓┊help
Register custom resource pages on the side navigation
Hey - having trouble trying register a resource custom page in the side menu navigation This is achievable if i manually create the navigation item in the AdminPanelProvider but would rather not have to do that Things i've tried adding to the resource custom page class: protected static ?string $navigationGroup = 'Orders';
public static function shouldRegisterNavigation(array $parameters = []): bool
{
return true;
}
public static function shouldRegisterNavigation(array $parameters = []): bool
{
return true;
}
But that doesn't seem to work however. Are my only options here making it a standalone Page (not associated to resource) or manually adding a nav item to AdminPanelProvider ?
3 replies
FFilament
Created by jlove1672 on 5/24/2023 in #❓┊help
Is it possible to use sushi for a custom page table rather than a resource table?
.
3 replies
FFilament
Created by jlove1672 on 5/3/2023 in #❓┊help
How can i modify a table record column before save (on column input)
I have a toggle column on my table - when i toggle this column like to modify another columns data before the record gets saved to the db. Thanks
4 replies
FFilament
Created by jlove1672 on 4/27/2023 in #❓┊help
How can i access the entire table record from a custom table column
i need to conditioanlly display a column per record in the table. I need to access a flag on the record to conditionally display data on another column on the filament table. Thanks
7 replies