repeater action
im trying to user and Action::make() inside a repeater but it doesnt do anything for example:
10 Replies
You need to give it a name to start:
Action::make('my_action')
The only one's you don't need to do that is on the default, edit, view, create etc as they are configured to have their own names.
it does have a name
Not in hte above code?
You have a repeater make, and you are including the action within the schema, that's not supported usually.
Are you wanting the action to be for the individual rows?
this is what im working on

So which part of that is the repeater? The repeater looks to be part of the lower section.
Personally, I would have an afterStateUpdated and then run applyBulkCosts as it should be fairly quick.
those are two repeaters
Yeah so you can't do quite what you want as you want it in the place of AddAction? Which you could do if you overrode the add action I suppose.