Dave2084
Automatic Sum of Selected Bulk Action item column
I have a filament table that has a number of custom bulk actions to do various things to the data.
I would also like to automatically display the sum of a numeric column for all selected rows. I know that I can do this in a modal as a new action but it would be better of I could display it as a table summary so this it is display as I select the items.
Is there any way do do this?
8 replies
Customising the Filament Password Reset Email
I have just launched filament a site today which requires existing users to reset their passwords to gain access.
The issue I am having is that they are using sendgrid which is adding tracking to the password reset links which breaks them. To fix this I need to add
The issue I am having is that they are using sendgrid which is adding tracking to the password reset links which breaks them. To fix this I need to add
clicktracking="off"
to the achors. I have updated the button component in my mail them to do this so they can get access be I need to also update the text link at the bottom of the email.
Can anyone point me in the right direction so I can publish the template for the password reset email?6 replies
How do I access the whole form using $get/$set when inside a repeater with relationship?
I have a fairly complex form that has a repeater that has among other values a "cost" column. When this changes in any row of the repeater I need to update the state of a field outside of the repeater with a total of all the cost fields, however using Filament\Forms\Get and Filament\Forms\Set I can only access the current row of the repeater.
How do I:
a. Access all records in the repeater to calculate the total.
b. Access the wider form so I can use $set to update the total field. Just to make this more awkward this field is in a different relationship (but not a repeater).
5 replies