combining tags

2005-07-06 Thread Tom Holmes Jr.
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 property=roomType/ html:text name=iter property=numItems indexed=true style=width:40/

taglibs help

2005-07-06 Thread syed abrar
Hello, Iam new to this Struts framework.I have been assigned a complex GUI coding. The screen has two frames :In one frame we have the family(family name as a link and a checkbox to select) and in the second frame we have the family members corresponding to the family.The family

Re: taglibs help

2005-07-06 Thread Wendy Smoak
From: syed abrar [EMAIL PROTECTED] Iam new to this Struts framework. I have been assigned a complex GUI coding. If you are indeed using Struts, you might want to post to the struts-user list instead. (This is taglibs-user.) You can find info here: http://struts.apache.org/mail.html --

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: taglibs help

2005-07-06 Thread Rahul Akolkar
On 7/6/05, Wendy Smoak [EMAIL PROTECTED] wrote: From: syed abrar [EMAIL PROTECTED] Iam new to this Struts framework. I have been assigned a complex GUI coding. If you are indeed using Struts, you might want to post to the struts-user list instead. (This is taglibs-user.) You can find

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