Re: RE: bean:write issues... or a better solution

2003-02-25 Thread Jason Vinson
--- From: Ray Madigan [EMAIL PROTECTED] Sent: 02/24/03 11:54 AM To: Struts Users Mailing List [EMAIL PROTECTED] Subject: RE: bean:write issues... or a better solution If queuesName is a session or request level attribute then the options tag should be html:options collection=queuesName property

RE: RE: bean:write issues... or a better solution

2003-02-25 Thread Karr, David
Show us where you're putting queuesName into request scope. -Original Message- From: Jason Vinson [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 10:12 AM To: Struts Users Mailing List Subject: Re: RE: bean:write issues... or a better solution I tried this in my page

Re: RE: RE: bean:write issues... or a better solution

2003-02-25 Thread Jason Vinson
] Subject: RE: RE: bean:write issues... or a better solution Show us where you're putting queuesName into request scope. -Original Message- From: Jason Vinson [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 10:12 AM To: Struts Users Mailing List Subject: Re: RE: bean:write

Re: Re: RE: RE: bean:write issues... or a better solution

2003-02-25 Thread Jason Vinson
] Sent: 02/25/03 01:34 PM To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: RE: RE: bean:write issues... or a better solution It's in my action class. theForm is the ActionForm that gets passed in. QueueListing[] theQueues = new QueueListing [cboQueue.getCount()]; for (int i=0; i

RE: RE: RE: bean:write issues... or a better solution

2003-02-25 Thread Jarnot Voytek Contr AU HQ/SC
: Tuesday, February 25, 2003 12:35 PM To: Struts Users Mailing List Subject: Re: RE: RE: bean:write issues... or a better solution It's in my action class. theForm is the ActionForm that gets passed in. QueueListing[] theQueues = new QueueListing [cboQueue.getCount()]; for (int i=0; i

RE: RE: RE: bean:write issues... or a better solution

2003-02-25 Thread Karr, David
: Tuesday, February 25, 2003 10:12 AM To: Struts Users Mailing List Subject: Re: RE: bean:write issues... or a better solution I tried this in my page and i get: [log error] javax.servlet.jsp.JspException: Cannot find bean under name queuesName

Re: bean:write issues... or a better solution

2003-02-24 Thread Jason Vinson
Did that jsp code come through? my webmail removed it from my side... ---Original Message--- From: Jason Vinson [EMAIL PROTECTED] Sent: 02/24/03 11:37 AM To: Struts Users Mailing List [EMAIL PROTECTED] Subject: bean:write issues... or a better solution Hi folks, I am using a

RE: bean:write issues... or a better solution

2003-02-24 Thread Ray Madigan
If queuesName is a session or request level attribute then the options tag should be html:options collection=queuesName property=objid/ given that the collection elements implement the getter getObjid ( ). Hope this helps! -Original Message- From: Jason Vinson [mailto:[EMAIL PROTECTED]

RE: bean:write issues... or a better solution

2003-02-24 Thread Jarnot Voytek Contr AU HQ/SC
Have you tried this syntax: html:options collection=statusLookup property=name labelProperty=value/ statusLookup is my Collection (in request scope), each element has getName() and getValue() methods... you're not going to be able to accomplish this by nesting jsp tags, as that is 'illegal'...