
Hi Kind People, Need your help on this scenario,
how to create control if like for example, The Tab (Candidate) is not filled out, so the "Submit" Button should not clickable unless, Tab is Filled with information.
Thanks in advanced!
Hi @Anonymous,
I am not sure what you're referring to by creating controls as there is no way to automate that, however, if you want to disable the button depending on a text box or something containing data. you would adjust the 'Display Mode' property of your button. if that textbox is blank then set the set the display mode to disabled, otherwise set it to Edit. you can adjust the following If statement:
If(IsBlank('YourTextboxName'),
DisplayMode.Disabled,
DisplayMode.Edit)
------------------------------------------------------------------------------------------------------------------------------
Please click "Accept as Solution" if this post answered your question so that it is helpful for people having similar questions. If you found this post helpful smack that Thumbs up button! Thanks!