This example is about changing the form depending on decisions the user did with the form previously.
In my special case, I needed to disable a selectbox, if a certain checkbox wasn't set.
So we have the FormBuilder, where we'll set the EventListener on the FormEvents::PRE_SUBMIT event. We're usin...