RE: Actionform 's property

2004-12-20 Thread Zhang, Larry \(L.\)
Thanks, this works. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, December 20, 2004 11:36 AM To: Struts Users Mailing List Subject: RE: Actionform 's property He doesn't: http://struts.apache.org/userGuide/struts-bean.html#define

RE: Actionform 's property

2004-12-20 Thread Zhang, Larry \(L.\)
Thanks. This works. -Original Message- From: Daniel Perry [mailto:[EMAIL PROTECTED] Sent: Monday, December 20, 2004 11:42 AM To: Struts Users Mailing List Subject: RE: Actionform 's property Well the way you dont wish to use would be the normal way to do it :) The form wi

RE: Actionform 's property

2004-12-20 Thread Daniel Perry
Well the way you dont wish to use would be the normal way to do it :) The form will be available in the request or session (depending on where you put the form) scope from the jsp under the form's name. So ${formName.employeeList} is the list from a JSTL perspective. From scriptlet, either: =((

RE: Actionform 's property

2004-12-20 Thread DGraham
He doesn't: http://struts.apache.org/userGuide/struts-bean.html#define "McDonnell, Colm (MLIM)" <[EMAIL PROTECTED]> 12/20/2004 11:17 AM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To "Struts Users Mailing List" <[EMAIL

Re: Actionform 's property

2004-12-20 Thread fzlists
There is no direct conversion between Java and Javascript objects (I hear tell of some libraries to do this though...) What you'll need to do otherwise is iterate over the List and construct Javascript from it, something like this: test myArray = new Array(); <% int i = 0; for (Iterator it

RE: Actionform 's property

2004-12-20 Thread McDonnell, Colm (MLIM)
Why do you want to do this? <% List iWantToGetThisList = (List) pageContext.getAttribute("employeeList"); %> -Original Message- From: Zhang, Larry (L.) [mailto:[EMAIL PROTECTED] Sent: 20 December 2004 15:58 To: Struts Users Mailing List Subject: Actionform 's property Say I have an ac