is it possible to get value from parent form with form action modal?
Refer to https://filamentphp.com/docs/3.x/forms/fields/builder#using-get-to-access-parent-field-values
I try with
on action that I said set main form value I calling Get,Set and push trough self::function
on self::function I try to get value from third form and set value to first form with
but the result is when
then I try
I try
and either I try
how can I access value correctly on main , second and third form?
I try with
on action that I said set main form value I calling Get,Set and push trough self::function
on self::function I try to get value from third form and set value to first form with
but the result is when
$get('third_form_value') it's show null then I try
$get() it's show value from second formI try
$get('../') it's show value of second form and third formand either I try
../../ ../../../ or else it's always show nullhow can I access value correctly on main , second and third form?