I have been working on this MultiForm on SilverStripe 3. Using the example from https://github.com/silverstripe/silverstripe-multiform, I added the form validation for the step one, i.e.
public function getValidator() {
$validator = new RequiredFields(array('AreaToStudyIn'));
return $validator;
}
the error message appears all right under the text field as expected, however, after fill in some value and continue to next step, this error message remain on the form, even after the form being submitted completely. One thing I do notice is that the validation error message is not coming from javascript validation, because the page is reloaded then comes the error message.
Has anyone tried to set the validation on MultiForm? Thank you for taking the time to read this :)