Hey, I want to make the "Reason for cancellation" field mandatory when the Status field is set to "cancelled", the Status field has been configured as a dropdown with "approved" "cancelled". How can I best do this, are there any tutorials or can someone explain it to me step by step, thanks in advance.
Put a condition on the mandatory property of the text like this:
It worked Thank You
Hi Aleyna,
Mandatory Property is a type of expression that can be set to any valid expression.
Set something similar to this in your case based on your variable.
SelectedStatusId = Entities.Status.Canceled
In addition to setting the Mandatory property of the input, you also need to check in your server action.