torpedo
Clusters resource with modal action shows the cluster menu again
i have added a modal action in one of my clusters rescources, it works fine, except the modal has the clusters sideboard again.. so its visible twice instead of onyl the modal content, how can i prevent it? i want to show only the modal content
3 replies
numeric value is set to 0 sets all other to 0 too
i have a function where i get some values from my form like this:
$netto = (float) $get('netto_price');
$discount = (float) $get("discounts.discount_percentage");
$tax = (int) $get('taxRate');
when i set the taxRate to 0 in the Form and dd the variables all are set to 0 or 0.00 in case of floats, even if others have a different value
if i set the taxRate to something higher then 0 and dd the variables
everything is normal again and all variables have correct values.. is it a bug or where is the problem?
2 replies
extraItemActions method on Repeater
when i try to use this method there is a error:
"Method Filament\Forms\Components\Repeater::extraItemActions does not exist."
but the Method is described in the documentation:
https://filamentphp.com/docs/3.x/forms/fields/repeater#adding-extra-item-actions-to-a-repeater
6 replies