Re: Form fields populated from Action class

2007-03-31 Thread manoj sinha
Action Class: public HashMap getUserDetails(String loginid)throws Exception{ UserInfo userInfo=null; .. userInfo = userInfoHome.findByPrimaryKey(loginid); HashMap userDetails=new HashMap(); use

Re: Form fields populated from Action class

2007-03-31 Thread Laurie Harper
manoj sinha wrote: Hi All, My Configuration is Struts2.0.6 , Postgres 8.1 I have jsp page and it contains drop down list of Log Id and list gets populated from database.Onselect specific user It should populate other form fields. User Details is getting from Action class.This class works fine.

Form fields populated from Action class

2007-03-31 Thread manoj sinha
Hi All, My Configuration is Struts2.0.6 , Postgres 8.1 I have jsp page and it contains drop down list of Log Id and list gets populated from database.Onselect specific user It should populate other form fields. User Details is getting from Action class.This class works fine. Now problem:as i sele