Say I have an action form MyForm extends ActionForm { List employeeList; //set/getter follows... }
Suppose in my action class's execute method, I populated employeeList from database, and do myForm.setEmployeeList(List someData); Now in my Jsp, how to get this value and assign this value to a java script variable? Such as: In my jsp: <% List iWantToGetThisList = ??? %> I know one way is that in the action's execute method, I put the employeeList in the request using request.setAttribute("employeeList", employeeList); but I don't want to do this way... --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]