Axure RP 8 Tip — Check all inputs in form

Martin Dymáček
2 min readOct 21, 2018

--

You have form with some inputs, checkboxes and submit button, which is in the default state disabled. You want to enable submit button after all inputs are selected, or filled.

Simple form with submit button disabled

You can validate every change of inputs with the same conditions. It’ s very inefficient and frustrating (changes, mistakes). Just like this:

Validate every input itself

You can use better solution — fire event.

How it works:

  • use some unused event for submit button, like “OnLoad”
  • copy conditions to this event
  • on input change fire event “Onload” for submit button

So, after this our form is validated on every change, but only with one piece of code.

I hope it will help you speed up your work!

--

--