-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ImportAction for Filament\Tables\Actions\Action #30
Comments
This would be so good to have, as I'm not using Filament resources, only forms and tables. If I change the mentioned |
This is really needed and extends the functionality massively to all filamentphp. |
Was there a reliable workaround to this issue? I too am getting the Thanks |
Not at present, it's only supported on the Resource level. |
How to implement the import inside a relation manager ??? Because I got the following error (when implemented inside the public static function table(Table $table): Table{
return $table
->headerActions([
ImportAction::make()
,]);
|
It needs to add individual support for table actions I believe whereas it's built for resources at the moment |
hi, is there any new updates for this, i have the same issue. thanks |
+1, any update? |
+1 |
much needed +1 |
this is possible with the native Filament Importer |
Yes but I find this plugin more useful than the native thanks to the developer and the contributors |
I have a resource that has a relation manager associated, and I would like to be able to import data to the relation but when I add the import action it gives me an error saying
Method Konnco\FilamentImport\Actions\ImportAction::table does not exist.
.After investigating I noticed that the
ImportAction
extendsFilament\Pages\Actions\Action
and to be able to add an action to a tablesheaderActions
param it has to extendFilament\Tables\Actions\Action
. Could it be possible to create anotherImportAction
that extends the tables class so it can be usable inside relations and other places that can only be extended fromFilament\Tables\Actions\Action
?The text was updated successfully, but these errors were encountered: