Custom Save Button for Create/Edit with Disable on FileUpload
Hello Filament Friends,
I have a problem with implementing different Save Buttons. My process should be such that the Save buttons determine whether an entry is active or not (published). So, my implementation has several buttons below the form, including "Save" and "Activate and Save." I'm not sure if my implementation is good. Depending on which button is pressed, I adjust data, like this:
Well, that works, but if uploads are not yet completed, one can click these buttons and the uploads are lost. In the case of the standard Save button, submission is blocked until completion. And that's what i want to achieve.
I tried to use the standard Actions and change them, but it didn't work. Like this...
I know that there are methods to modify data before saving, but I'm not sure how to determine which button was pressed at that point.
And honestly, I haven't fully understood what the "submit('save')" in the standard action exactly means. I still need to figure that out.
Thank you!
2 Replies
Alternatively, it would help me if I knew how to manipulate the data when clicking on the standard create/save action, but it must be considered that I want to include these buttons twice, once with changing 'active' to true and once without.
I also found out that in the template, it checks if it is a submit button, and these buttons receive an indicator when a file upload is in progress.
vendor/filament/support/resources/views/components/button/index.blade.php
$hasFormProcessingLoadingIndicator = $type === 'submit' && filled($form);
Hi @Ben Did you get this working? I've got the same question - how do you know which button is pressed.
Well waddyaknow. Chatgpt helped, on the second attempt:
Add the action:
Add the saveAndPublish function
And for the edit page: