Hello All,
I am sorry, this question might already be answered somewhere here, but I have searched for like an hour to no avail.
Anyway, my question is this. I have a for bean, investigatorForm.java, defined and I can use it to fill out a jsp form, pass the values to the action class, and then create or update the record in the database. I want to go the other way though...
I want to populate investigatorForm.java in the action class, pass it back to the editInvestigator.jsp and have the <html:text> fields on the page autopopulated. Is there anyway to have struts take care of this so I dont have to do this:
<html:text property="investigatorName" value="<%=invForm.getInvestigatorName()%>"/>
Cause from what I read I am under the inpression strut can handle this for you, I would just like to know how...
Thanks in advance for any help,
Matt