Enable/disable submit button for text input

I created a form, i want the input to be required/must enter text before the can submit. Any ideas?

1 Like

Hi @myaspen.it,

You can use a conditional trigger on your submit button to see if the text input is empty or not, then either perform your action or warn the user he should fill in this field.

1 Like

thank for your quick reply. But how can i set a text input to at least contain any alphabet and another condition is to make the text input is an email adress?

You can configure your Text input to accept only certain characters and even use a regular expression to specify a valid text format. Check the properties in this article section.
Then you can use the triggers of the text input to enable / disable your button.

1 Like