Hi guys, I am creating an application that has text field but it was hidden until met certain condition. What I want to do is, if its not visible (the text field) I can submit the form as usual to data source, but if the text field is visible, then it will be a required field and user cannot submit the form until that field is fill up. Any suggestion to achieve this? Thank you.
p/s: I have use this formula but no luck. Even if the field is not visible, I'm still cannot submit it because it become disabled.
DisplayMode: If(And(!IsBlank(TextInput5.Text)),DisplayMode.Edit,DisplayMode.Disabled)