Form calling another form does not call referenceData()
I can't seem to find the problem to this one. I have a SimpleFormControler's onSubmit event that processes database stuff then needs, in some cases, to pass the model to another form for more data entry. I tried setFormView("edit"); return showForm() and return new ModelAndView("edit",errors.getModel()); and the new form loads with the model but the form's referenceData() is not called so my comboboxes are empty!
Is there a way to do it without AbstractWizardFormController??
Any ideas????
Uze