Re: html:multibox nested within a c:forEach Help!

2005-04-15 Thread gdeschen
David, Sounds like the same thing I was having fun with yesterday. I'm just back into the code... seems like the best would be Struts-EL tags. I have not looked into how to use them in the current environment (WebSphere Studio Application Developer). - Glenn David Johnson [EMAIL

Re: html:multibox nested within a c:forEach Help!

2005-04-15 Thread David Johnson
Are there any resources you can point me to? On 4/15/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: David, Sounds like the same thing I was having fun with yesterday. I'm just back into the code... seems like the best would be Struts-EL tags. I have not looked into how to use them in the

Re: html:multibox nested within a c:forEach Help!

2005-04-15 Thread gdeschen
user@struts.apache.org cc: (bcc: Glenn Deschenes/NAT/CMHC-SCHL/CA) Subject:Re: html:multibox nested within a c:forEach Help! Classification: Are there any resources you can point me to? On 4/15/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: David, Sounds like

Re: html:multibox nested within a c:forEach Help!

2005-04-15 Thread David Johnson
Users Mailing List user@struts.apache.org cc: (bcc: Glenn Deschenes/NAT/CMHC-SCHL/CA) Subject:Re: html:multibox nested within a c:forEach Help! Classification: Are there any resources you can point me to? On 4/15/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote

Re: html:multibox nested within a c:forEach Help!

2005-04-15 Thread David Johnson
List user@struts.apache.org cc: (bcc: Glenn Deschenes/NAT/CMHC-SCHL/CA) Subject:Re: html:multibox nested within a c:forEach Help! Classification: Are there any resources you can point me to? On 4/15/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: David

RE: html:multibox nested within a c:forEach Help!

2005-04-15 Thread Slattery, Tim - BLS
This looks like exactly what I need. I cant seem to find the proper home page for the struts-el subproject however. I assume I need struts-bean-el.tld struts-html-el.tld struts-logic-el.tld struts-el.jar Anyone using this that can give me a starting point? I have those, plus the

RE: html:multibox nested within a c:forEach Help!

2005-04-15 Thread Slattery, Tim - BLS
if I'm using the Struts-EL version of the tags do I simply REMOVE the references to the old struts tags, or is it proper for them to coexist? I assume they ca coexist since not all of them have been ported. They can co-exist, as long the prefix attribute in the taglib directive is

Re: html:multibox nested within a c:forEach Help!

2005-04-15 Thread David Johnson
Where do you get all the struts-el stuff? dos it come bundles with Struts 1.2.4? On 4/15/05, Slattery, Tim - BLS [EMAIL PROTECTED] wrote: if I'm using the Struts-EL version of the tags do I simply REMOVE the references to the old struts tags, or is it proper for them to coexist? I assume

Re: html:multibox nested within a c:forEach Help!

2005-04-15 Thread David Johnson
OH MY GOD IT WORKS For Future Reference: OLD: c:forEach var=refPortfolio items=${refPortfolios} html:multibox value= c:out value='${portfolio.portfolioName}'/ property=userPortfolio / /c:forEach NEW: c:forEach var=refPortfolio items=${refPortfolios} html:multibox

RE: html:multibox nested within a c:forEach Help!

2005-04-15 Thread Slattery, Tim - BLS
I am now mixing JSTL, Struts-EL and Struts (garden variety) tags. Does this eem strange or like S.O.P? I use JSTL and struts-el tags together all the time. Of course, most of my struts tags don't use EL, so they look like original Struts stuff. That way, if I need EL in a tag, I just put it