handling dynamic html objects in struts with form beans
843836Feb 4 2005 — edited Sep 8 2007I have a JSP web page need to show Dynamic Text Objects,
Type A TypeB TypeC Type D..........
txt_A_1 txt_B_1 txt_C_1 txt_D_1
txt_A_2 txt_B_2 txt_C_2 txt_D_2
in above view,
I have a dynamic columns like A,B,C,D,.............
I also may Have Dynamic rows as !,2,3,............
so, in above example "txt_Columnname_Rowname" represent each html text object
at present we have handled this situation based on request.getParameter...method of request object in Action Files.
Can any one who has Worked on Struts Technolgy, for above situation to handle dynamic controls in JSP view, Method(getter,setter methods) Representation in FORM BEANS,
and handling the same in Action Files .