Re: combining tags

2005-07-06 Thread Rahul Akolkar
Tom - Please see reply below: On 7/6/05, Tom Holmes Jr. [EMAIL PROTECTED] wrote: I used to have some JSP code that looked like: logic:iterate name=myForm property=myDataList id=iter html:checkbox name=iter property=checkedRes indexed=true/ bean:write name=iter

Re: combining tags

2005-07-06 Thread Wendy Smoak
From: Tom Holmes Jr. [EMAIL PROTECTED] I'd like to switch to something likes this: c:forEach items=${SelectedRoomsForm.roomsList} var=data varStatus=status html:checkbox name=data property=checkedRes indexed=true/ c:out value=${data.roomType}/ html:text name=data

Re: combining tags

2005-07-06 Thread Tom Holmes Jr.
Wendy Smoak wrote: From: Tom Holmes Jr. [EMAIL PROTECTED] I'd like to switch to something likes this: c:forEach items=${SelectedRoomsForm.roomsList} var=data varStatus=status html:checkbox name=data property=checkedRes indexed=true/ c:out value=${data.roomType}/

Re: combining tags

2005-07-06 Thread Wendy Smoak
From: Tom Holmes Jr. [EMAIL PROTECTED] I have no idea if it is a JSP Container 2.0 or not. I can tell you that we are using IBM Websphere 5.1.x Portal Server. A quick Google search didn't turn up the info-- I'm trying to determine which version of the Servlet specification it implements. My

RE: combining tags

2005-07-06 Thread Karr, David
To clarify some comments from other responders: It is a good idea to use Struts-EL if you're going to use the JSTL. However, for this particular example, the Struts tag library itself has knowledge of c:forEach, as opposed to logic:iterate, so an html Struts tag that uses indexed=true will work