Hi,
I have a form with a field called type
. If the type
is set to "invoice"
, then the price
field (which is inside a sub-table called invoice items
) should be required. But if the type
is something else, then the price
field should not be required.
How can I make the price
field in the sub-table conditionally required based on the type
value in the parent form?
Thanks in advance!