RelationManager ->table ->attachAction
Hi everyone! I want to achive something like this:
I have a RelationManager file with a table, in the table i have
After press Attach button how can i open another modal ? Also how can i save some data from this attach to some other table from db ? Is this even possible? Thanks in advance!
Tables\Actions\AttachAction::make()
After press Attach button how can i open another modal ? Also how can i save some data from this attach to some other table from db ? Is this even possible? Thanks in advance!
3 Replies
After press Attach button how can i open another modalI think there is a
replaceAction()
or similar. Not sure how it works though.
Also how can i save some data from this attachYou can overwrite the
action()
or the process()
to adjust the behaviour.thanks for your answer, i`ll try