Re: Using optionsCollection - LabelValueBean

2004-03-15 Thread Dean A. Hoover
ation numbers. 1 2 3 4 5 next COMBOBOX v I have one rule when writing jsp pages and it is "no scriplets anymore". The Struts handles everything nicely if some time is offered in designing the beans and linking system. In this case mine is WEB->FORM->ACTION->SERVICE->BEAN WEB<

Re: Re: Using optionsCollection - LabelValueBean

2004-03-15 Thread ddd ddd
> > > > > >The needs to be provided with the property it's associated to, > >the one on your form bean that will hold the actual value selected. > > > > >property="goTo" size="1"> > > >name="PageDetailView" &

Pl. help urgent Using optionsCollection - LabelValueBean

2004-03-15 Thread ddd ddd
at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveConte

Re: Using optionsCollection - LabelValueBean

2004-03-14 Thread ddd ddd
at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2416) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180) at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline On Sun, 14 Mar 2004 Timo Tjäder

Re: Using optionsCollection - LabelValueBean

2004-03-14 Thread Timo Tjäder
uot; should be a property on your form bean. > >hth, > >Hubert > > > >--- Timo_Tjäder <[EMAIL PROTECTED]> wrote: >> Hi, >> >> I have problems with optionsCollection, when used with >> custom tag. >> >> 1. I set up in a bean Labe

Re: Using optionsCollection - LabelValueBean

2004-03-14 Thread Hubert Rabago
gt; > I have problems with optionsCollection, when used with > custom tag. > > 1. I set up in a bean LabelValueBean object in a Vector > 2. pass it back to form and try to create a > > This part should display a combo box with options, but > it just does not work. It does

Using optionsCollection - LabelValueBean

2004-03-14 Thread Timo Tjäder
Hi, I have problems with optionsCollection, when used with custom tag. 1. I set up in a bean LabelValueBean object in a Vector 2. pass it back to form and try to create a This part should display a combo box with options, but it just does not work. It does not display anything. Html code is

RE: How to set the selected value in an select rendered by optionsCollection

2004-03-11 Thread Wendy Smoak
> From: Frank Schaare [mailto:[EMAIL PROTECTED] > > This would only be true if the action that was called > specified that form in its mapping. > Sorry, but i guess you are wrong. > The declared formBeans are digested during ActionServlets.init(). Actually, he's right. :) My advice only appli

Re: rePost: How to set the selected value in an select rendered by optionsCollection

2004-03-11 Thread Niall Pemberton
Its the name/property specified on the tag that causes OptionsCollection to set "selected" - in your case the select tag needs to look at he country property of the customer bean - if optionsCollection finds a value that matches that, it will set selected. Niall - Origin

rePost: How to set the selected value in an select rendered by optionsCollection

2004-03-11 Thread Frank Schaare
Hi all, i´m reposting my problem trying to be a little bit more specific. This problem is very important for me, though i made another 'book like' example to show where i am. There are three beans playing in my theatre: 1. the CommonValuesBean which stores frequently asked data for my JSP HTML

Re: How to set the selected value in an select rendered by optionsCollection

2004-03-11 Thread Frank Schaare
will see the following right after applications startup, when setting a breakpoint in any action: mapping/moduleConfig/formBeans which is a HashMap. All your declared beans are right there. Does anyone know the right way to access this HashMap ? Anyway, we became very far away from my optionsCollect

RE: How to set the selected value in an select rendered by optionsCollection

2004-03-10 Thread Hubert Rabago
--- Wendy Smoak <[EMAIL PROTECTED]> wrote: > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > because of the fact, that i´ve got no access to this bean in my > > preprocessing action. testSelect is a member of the upcoming > > DynaActionValidatorForm with is initiatet during the > > ta

RE: How to set the selected value in an select rendered by optionsCollection

2004-03-10 Thread Wendy Smoak
> From: Frank Schaare [mailto:[EMAIL PROTECTED] > this is where i am: there is my business object 'sb' and the upcoming > DynaActionForm. sb extends ActionForm, there should be sb.execute(). No. The execute method is in the Action, not the ActionForm. > Shall i cast my business object 'sb' ?

Re: How to set the selected value in an select rendered by optionsCollection

2004-03-10 Thread Frank Schaare
Hi Wendy, thx for your reply, but there are some questions left: this is where i am: there is my business object 'sb' and the upcoming DynaActionForm. sb extends ActionForm, there should be sb.execute(). Nope. It goes request->form creation->action. You are being passed the form in the signatur

RE: How to set the selected value in an select rendered by optionsCollection

2004-03-10 Thread Wendy Smoak
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > in your preprocessing action class to set the value of > "testSelect", which will automatically add the SELECTED > attribute on the option tag? > because of the fact, that i´ve got no access to this bean in my > preprocessing action. testS

Re: How to set the selected value in an select rendered by optionsCollection

2004-03-10 Thread [EMAIL PROTECTED]
Hi Nagiel, if (sb.getTitle().equals("Mr.")) formularBean.setTestSelect(sb.getTitle()) in your preprocessing action class to set the value of "testSelect", which will automatically add the SELECTED attribute on the option tag? because of the fact, that i´ve got no access to this bean in my

RE: How to set the selected value in an select rendered by optionsCollection

2004-03-10 Thread Shahak.Nagiel
ion tag? Regards, Shahak Nagiel -Original Message- From: Frank Schaare [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 10, 2004 4:31 AM To: [EMAIL PROTECTED] Subject: How to set the selected value in an select rendered by optionsCollection I´ve got this select rendered with dat

How to set the selected value in an select rendered by optionsCollection

2004-03-10 Thread Frank Schaare
I´ve got this select rendered with data from my applicationwide formularBean: This renders a select like this: Mrs. Mr. Dr. . . The formular fields in my JSP should be prefilled with data from my person bean ("sb") which has a Title property,

Re: optionsCollection struts 1.1

2004-03-05 Thread bojke
; } public String getValue() { return value; } public void setLabel(String temp) { this.label=temp; } public void setValue(String temp) { this.value=temp; } } Hope this helps --Yoge bojke wrote: Hi, I don't see optionsCollection in struts1.1 Is there optionsCollection in struts1.1? I have Ar

Re: optionsCollection struts 1.1

2004-03-04 Thread as as
String getValue() { return value; } public void setLabel(String temp) { this.label=temp; } public void setValue(String temp) { this.value=temp; } } Hope this helps --Yoge bojke wrote: > Hi, > > I don't see optionsCollection in struts1.1 > Is there optionsCollection in struts1.1? &

Re: optionsCollection struts 1.1

2004-03-04 Thread as as
String getValue() { return value; } public void setLabel(String temp) { this.label=temp; } public void setValue(String temp) { this.value=temp; } } Hope this helps --Yoge bojke wrote: > Hi, > > I don't see optionsCollection in struts1.1 > Is there optionsCollection in struts1.1? &

Re: optionsCollection struts 1.1

2004-03-04 Thread yoge
this.label=temp; } public void setValue(String temp) { this.value=temp; } } Hope this helps --Yoge bojke wrote: Hi, I don't see optionsCollection in struts1.1 Is there optionsCollection in struts1.1? I have ArrayList as property of FormBean. ArrayList is collection of b

optionsCollection struts 1.1

2004-03-04 Thread bojke
Hi, I don't see optionsCollection in struts1.1 Is there optionsCollection in struts1.1? I have ArrayList as property of FormBean. ArrayList is collection of beans. Beans of course has a propreties. Does anybody know how to dislpay e.g bean property beanName using html:options in drop-down

RE: optionsCollection ...

2004-02-25 Thread Slattery, Tim - BLS
> Someone have one example of html:optionsCollection with html:select. The FormBean contains a domestic_Foreign property (a string), and a domesticForeignList property. That returns a collection of beans, each of which has "code" and "value" properties. -- Tim Slattery [EMAIL PROTECTED]

optionsCollection ...

2004-02-25 Thread Daniel
Someone have one example of html:optionsCollection with html:select. obrigado Daniel S.

RE: optionsCollection with another default value

2003-11-24 Thread Daniel Lipofsky
Use one tag followed by the tag. - Dan > -Original Message- > From: Frank Schaare [mailto:[EMAIL PROTECTED] > Sent: Monday, November 24, 2003 3:15 AM > > Hallo, > > i´ve made a select from an optionsCollection Tag. The values are read > from a hashmap like

optionsCollection with another default value

2003-11-24 Thread Frank Schaare
Hallo, i´ve made a select from an optionsCollection Tag. The values are read from a hashmap like value1 = one value2 = two value3 = three Now i´d like to set a default value for this select, which is NOT PART of my HashMap, f.e "please select..." The rendered select should look

mapped properties, checkboxes, and optionsCollection

2003-11-09 Thread John Hayes
before? Problem #2 I am trying to use another mapped property in the same ActionForm implementation on an html:optionsCollection. I initialize the dbList's value in the Map and the optionsCollection loads properly in the browser. However, on submission I only get the first value if m

Re: Problems using the optionsCollection tag

2003-09-21 Thread James JKE95 Kerridge
PLEASE IGNORE THIS PROBLEM. NOW RESOLVED. The optionsCollection tag does work properly. I was using it properly. Just had a build issue that caused the strange behaviour. Thanks and sorry James From: "James JKE95 Kerridge" <[EMAIL PROTECTED]> on 22/09/2003 14:38 P

Problems using the optionsCollection tag

2003-09-21 Thread James JKE95 Kerridge
All, I am having a problem using the optionsCollection tag. I get this error: javax.servlet.jsp.JspException: No getter method for property reasonsForTicketIssueOptions of bean org.apache.struts.taglib.html.BEAN at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:968

resource bunlde and optionsCollection?

2003-06-24 Thread rab yazbeck
Hi there. Is there any way to use resource bunlde from within or ? i only know that the resource bundle can only be used with .. And by the way, is there any equivalent for struts html tags in the JSTL? Thanks.. Rab. __ Yahoo! Plus For a better

optionsCollection

2003-06-23 Thread Filip Polsakiewicz
Hi, i have a collection of String values in my Form and want a selectbox with options out of this collection beeing displayed on my jsp. How can i do this. i tried but it says that there is no getter method for property alang in bean DE where DE ist the first String in my Collection. I'd apprecia

Re: Wanted best practice for i18n'd optionsCollection

2003-03-12 Thread Mark
; > >- Original Message - >From: "Rick Reumann" <[EMAIL PROTECTED]> >To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >Sent: Friday, March 07, 2003 2:57 AM >Subject: Re: Wanted best practice for i18n'd optionsCollection > &g

Re: Wanted best practice for i18n'd optionsCollection

2003-03-12 Thread Christopher Cheng
ction" - Original Message - From: "Rick Reumann" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, March 07, 2003 2:57 AM Subject: Re: Wanted best practice for i18n'd optionsCollection > On Fri, 7 Mar

Re: Wanted best practice for i18n'd optionsCollection

2003-03-06 Thread Rick Reumann
On Fri, 7 Mar 2003 02:44:12 +0800 "Christopher Cheng" <[EMAIL PROTECTED]> wrote: > > On Monday, Mar 3, 2003, at 21:16 Canada/Eastern, Christopher Cheng > > wrote: > > > > > I posted a similar question long time ago in this list. -> Nobody > > > cares. > > > > > > So I developed my own custom t

Re: Wanted best practice for i18n'd optionsCollection

2003-03-06 Thread Christopher Cheng
Please comment - Original Message - From: "Thomas Gourgon" <[EMAIL PROTECTED]> To: "Christopher Cheng" <[EMAIL PROTECTED]> Sent: Tuesday, March 04, 2003 10:03 PM Subject: Re: Wanted best practice for i18n'd optionsCollection > Hi Christopher, >

Re: Wanted best practice for i18n'd optionsCollection

2003-03-03 Thread Christopher Cheng
u a copy of it. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 01, 2003 5:24 AM Subject: Wanted best practice for i18n'd optionsCollection > Hi all, > > I've successfully used the applications.properties method o

Wanted best practice for i18n'd optionsCollection

2003-02-28 Thread Bob . Coss
Hi all, I've successfully used the applications.properties method of isolating my messages, prompts etc. so I can use different locales in my struts pages. I have some static select fields and I'm wondering what would be the best way to use something like the optionsCollection to

Re: Help with optionsCollection error

2003-02-26 Thread Peng Tuck Kwok
to it. Can you ask the question a different way? - Original Message - From: "Peng Tuck Kwok" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, February 26, 2003 12:25 AM Subject: Re: Help with optionsCollection error A

Re: Help with optionsCollection error

2003-02-26 Thread Ian Hunter
uts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, February 26, 2003 12:25 AM Subject: Re: Help with optionsCollection error > Another question Ian, since I changed it, what values would be passed > into the two inputs ? I tried doing a System.out.println to see what

Re: Help with optionsCollection error

2003-02-25 Thread Peng Tuck Kwok
in charge of the FAQ around here?) - Original Message - From: "Peng Tuck Kwok" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, February 25, 2003 11:39 PM Subject: Re: Help with optionsCollection error Hi Ian, your ti

Re: Help with optionsCollection error

2003-02-25 Thread Ian Hunter
2003 11:39 PM Subject: Re: Help with optionsCollection error > Hi Ian, your tip worked like a charm and I substituted it with the > setRecipient(String key, String value) method. Hmm now I need to see > what exactly I put in there. > > Ian ever thought of adding this as a faq

Re: Help with optionsCollection error

2003-02-25 Thread Peng Tuck Kwok
ist" <[EMAIL PROTECTED]> Sent: Tuesday, February 25, 2003 10:56 PM Subject: Re: Help with optionsCollection error I'm currently implementing the recipients as a vector of beans and I do provide method setRecipients which takes in a vector and sets the recipients vector to it. Is t

Re: Help with optionsCollection error

2003-02-25 Thread Peng Tuck Kwok
PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, February 25, 2003 10:56 PM Subject: Re: Help with optionsCollection error I'm currently implementing the recipients as a vector of beans and I do provide method setRecipients which takes in a vector

Re: Help with optionsCollection error

2003-02-25 Thread Ian Hunter
<[EMAIL PROTECTED]> Sent: Tuesday, February 25, 2003 10:56 PM Subject: Re: Help with optionsCollection error > I'm currently implementing the recipients as a vector of beans and I do > provide method setRecipients which takes in a vector and sets the > recipients vector to

Re: Help with optionsCollection error

2003-02-25 Thread Peng Tuck Kwok
I'm currently implementing the recipients as a vector of beans and I do provide method setRecipients which takes in a vector and sets the recipients vector to it. Is that the setter method you are referring to ? Thanks. Ian Hunter wrote: The ActionForm descendant. --

Re: Help with optionsCollection error

2003-02-25 Thread Ian Hunter
The ActionForm descendant. - Original Message - From: "Peng Tuck Kwok" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, February 25, 2003 10:39 PM Subject: Re: Help with optionsCollection error > You say : >

Re: Help with optionsCollection error

2003-02-25 Thread Peng Tuck Kwok
You say : My guess is the BeanUtils.populate error is because you wrote an indexed setter method Which bean would that be? The form bean or the collections of beans that the property refers to ? and overloaded the String[] or Collection setter method. Don't do that. ---

Re: Help with optionsCollection error

2003-02-25 Thread Ian Hunter
t;[EMAIL PROTECTED]> Sent: Tuesday, February 25, 2003 10:20 PM Subject: Help with optionsCollection error > I've sucessfully managed to display a multiple options in > but when I click on submit I get errors. > > One condition is when I don't click on any of the options ,

Help with optionsCollection error

2003-02-25 Thread Peng Tuck Kwok
I've sucessfully managed to display a multiple options in but when I click on submit I get errors. One condition is when I don't click on any of the options , this error would be failed to obtain specified collection when ever I try to access the bean attribute that contains the values. The bean a

RE: OptionsCollection and default value

2002-12-23 Thread John Menke
> Actually first just to appease me/us do a bean:write > property="taskCodeType" right before you do the select options > portion in your jsp. Then also view source of the page and see what > you have listed as the values of the options (maybe your values aren't > matching what is displayed, assu

Re: OptionsCollection and default value

2002-12-22 Thread David M. Karr
> "John" == John Menke <[EMAIL PROTECTED]> writes: >> At this point, I would be executing this in the debugger, and >> tracing through >> the SelectTag code, and your form bean code. John> I have to get JSP debugging setup to do that. Do you know if eclipse John> supports

Re: OptionsCollection and default value

2002-12-22 Thread Rick Reumann
On Sun, 22 Dec 2002 18:39:05 -0500 "John Menke" <[EMAIL PROTECTED]> wrote: > > I have to get JSP debugging setup to do that. Do you know if eclipse > supports > JSP debugging with Tomcat? > Actually first just to appease me/us do a bean:write property="taskCodeType" right before you do the sel

RE: OptionsCollection and default value

2002-12-22 Thread John Menke
> At this point, I would be executing this in the debugger, and > tracing through > the SelectTag code, and your form bean code. > I have to get JSP debugging setup to do that. Do you know if eclipse supports JSP debugging with Tomcat? -jm -- To unsubscribe, e-mail:

Re: OptionsCollection and default value

2002-12-22 Thread David M. Karr
> "John" == John Menke <[EMAIL PROTECTED]> writes: >> Are you sure that "taskCodeType" in your form bean is being set to >> the appropriate value before being directed to the jsp? John> I'm positive this works as I had the formbean working with html:text tags to John> test and

RE: OptionsCollection and default value

2002-12-22 Thread John Menke
> > Are you sure that "taskCodeType" in your form bean is being set to > the appropriate value before being directed to the jsp? > I'm positive this works as I had the formbean working with html:text tags to test and the taskCodeType variable displays fine. When I change from html:text to html:se

Re: OptionsCollection and default value

2002-12-22 Thread Rick Reumann
On Sun, 22 Dec 2002 15:01:42 -0500 "John Menke" <[EMAIL PROTECTED]> wrote: > property="taskCodeTypeOptions" /> > > > MY JSP WILL RUN AND POPULATE THE SELECT TAG CORRECTLY, BUT IT DOESN'T > CHOOSE THE CORRECT INITIAL VALUE. > > IE. THE "SELECTED" property is not set correctly. > Are you sur

Re: OptionsCollection and default value

2002-12-22 Thread David M. Karr
> "John" == John Menke <[EMAIL PROTECTED]> writes: John> I have searched the archives and can't find a direct answer to this: John> I am using html:optionsCollection within an html:select tag. John> My form bean has a method getTaskCodeTypeOptions that returns a collection Jo

OptionsCollection and default value

2002-12-22 Thread John Menke
I have searched the archives and can't find a direct answer to this: I am using html:optionsCollection within an html:select tag. My form bean has a method getTaskCodeTypeOptions that returns a collection of beans with name and value properties and my JSP is coded as follows: MY JSP WILL RU

RE: Re: OptionsCollection

2002-12-13 Thread shirishchandra . sakhare
we Subject: Re: OptionsCollection Okay... But a drop down menu is screen data. And a list of companies is something that will be used more than once. So I have a normal class in my model layer ListCompanies In my UserAction (ListCompanies).getCompanies(); But this Action's primary job

Re: OptionsCollection

2002-12-13 Thread V. Cekvenich
hat is being displayed.So u just populate the form in action. Any comments... :-)) -Original Message- From: VEDRE [mailto:[EMAIL PROTECTED]] Sent: Friday, December 13, 2002 11:44 AM To: struts-user Cc: VEDRE Subject: RE: OptionsCollection You can either use attribute collect

Re: OptionsCollection

2002-12-13 Thread V. Cekvenich
Use Struts-menu from sf.net. Mark wrote: Hello I've a number of collections already defined that end up being passed to my jsp's via the request object. Users in this case is a map defined in my business logic class that does db queries. users = (ListUsers).getUsers(); request.setAttribute("

Re: OptionsCollection

2002-12-13 Thread V. Cekvenich
options if you have not looked at the documentation. -rana. -Original Message- From: Mark [mailto:[EMAIL PROTECTED]] Sent: Friday, December 13, 2002 5:36 AM To: Struts Users Mailing List Subject: OptionsCollection Hello I've a number of collections already defined that end up being pass

Re: OptionsCollection

2002-12-13 Thread Mark
AIL PROTECTED]] > Sent: Friday, December 13, 2002 11:44 AM > To: struts-user > Cc: VEDRE > Subject: RE: OptionsCollection > > > You can either use attribute collection="users" for options tag if you store > in request > or you can use name="formNam

Re: OptionsCollection

2002-12-13 Thread Mark
> if you have not looked at the documentation. > > -rana. > > > -Original Message- > From: Mark [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 13, 2002 5:36 AM > To: Struts Users Mailing List > Subject: OptionsCollection > > > Hello >

RE: OptionsCollection

2002-12-13 Thread shirishchandra . sakhare
:[EMAIL PROTECTED]] Sent: Friday, December 13, 2002 11:44 AM To: struts-user Cc: VEDRE Subject: RE: OptionsCollection You can either use attribute collection="users" for options tag if you store in request or you can use name="formName" property="myList" if

RE: OptionsCollection

2002-12-13 Thread VEDRE, RANAPRATAP REDDY
ass before forwarding to a jsp). checkout http://jakarta.apache.org/struts/userGuide/struts-html.html#options if you have not looked at the documentation. -rana. -Original Message- From: Mark [mailto:[EMAIL PROTECTED]] Sent: Friday, December 13, 2002 5:36 AM To: Struts Users Mailing List Subj

OptionsCollection

2002-12-13 Thread Mark
Hello I've a number of collections already defined that end up being passed to my jsp's via the request object. Users in this case is a map defined in my business logic class that does db queries. users = (ListUsers).getUsers(); request.setAttribute("users",users); I itertate through this co

RE: Self reference in optionsCollection

2002-11-21 Thread Karr, David
gt; Subject: Self reference in optionsCollection > > > How do you reference "this" in an optionsCollection (or any > standard tag for that matter)? The nested tags support a > special notation of ./ or this/, which doesn't appear to carry > through to standard tags.

Self reference in optionsCollection

2002-11-21 Thread David Morris
How do you reference "this" in an optionsCollection (or any standard tag for that matter)? The nested tags support a special notation of ./ or this/, which doesn't appear to carry through to standard tags. Thanks, David Morris -- To unsubscribe, e-mail: <mailto:[EMA

optionsCollection error "Failed to obtain specified collection"after unsuccessful validate()

2002-11-14 Thread adam kramer
I'm using the Struts nightly build from nov. 13. Initially I populate an ArrayList in a Validator form in an Action with authentication types for a login screen. In the jsp page, the authentication types are displayed with an optionsCollection tag: These are disp

RE: Get better performance with optionsCollection

2002-08-09 Thread Jacob Hookom
needing to regenerate it on every request. Regards, Jake | -Original Message- | From: Joe Latty [mailto:[EMAIL PROTECTED]] | Sent: Friday, August 09, 2002 3:40 AM | To: Struts Users Mailing List | Subject: RE: Get better performance with optionsCollection | | Not exactly sure if this will

Re: Get better performance with optionsCollection

2002-08-09 Thread Cliff Rowley
Alternatively, sometimes it may be more efficient both in terms of performance and user interaction to think about how you present your users with data, and how you receive interaction. A very long drop-down list may be (and often is) cumbersome. Some points to think about: - Is the list of ite

RE: Get better performance with optionsCollection

2002-08-09 Thread Joe Latty
Not exactly sure if this will help performance but I am using the org.apache.struts.util.LabelValueBean and the optionsCollection. Works a treat, one other thing is maybe cacheing your "landliste" if this is possible. Joe -Original Message- From: [EMAIL PROTECTED] [mai

Get better performance with optionsCollection

2002-08-09 Thread Marc.Hofer
Hi! I use a select-tag im my JSP. But now a have a performance problem, because I have an options-list with more than 100 entrys. Is there someone who can tell me hot to make this faster (better way to do this!). My Settings: JSP: Form-Obje

can the optionscollection tag use an array?

2002-07-02 Thread Bill Milbratz
Hi, I'm looking over the documentation for the new tag and wanted to clarify a detail: Can the 'collection of objects' (identified by the 'property' attribute) be an array of objects? Or must it be a java.util.Collection? This is an issue because use of arrays would cut down a bit on our obje

RE: Problems with optionsCollection tag and Weblogic 6.1

2002-03-26 Thread Arnaud Heritier
ive.com/struts- user%40jakarta.apache.org/msg26926.html OS/Version: All Status: NEW Severity: Normal Priority: Other Component: Custom Tags AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] The use of the optionsColle

Re: Problems with optionsCollection tag and Weblogic 6.1

2002-03-26 Thread Marcelo Vanzin
Arnaud Heritier wrote: > but the release method defines : > > label = null; > name = null; > property = null; > style = null; > styleClass = null; > value = null; Hmmm, I guess this is something that needs to be fixed. :-) I think I missed this in the code... > Do you used the name and

RE: Problems with optionsCollection tag and Weblogic 6.1

2002-03-26 Thread Arnaud Heritier
me and value attributes in the tag Arnaud > -Message d'origine- > De: Arnaud Heritier [SMTP:[EMAIL PROTECTED]] > Date: mardi 26 mars 2002 15:42 > A:'Struts Users Mailing List' > Objet:RE: Problems with optionsCollection tag and Weblogic

RE: Problems with optionsCollection tag and Weblogic 6.1

2002-03-26 Thread Arnaud Heritier
15:32 > A:Struts Users > Objet:Problems with optionsCollection tag and Weblogic 6.1 > > > Hello there, > > I've started to use Struts 1.1, and one of the things I was testing was > the "html:optionsCollection" tag, to rep

Problems with optionsCollection tag and Weblogic 6.1

2002-03-26 Thread Marcelo Vanzin
Hello there, I've started to use Struts 1.1, and one of the things I was testing was the "html:optionsCollection" tag, to replace one we coded here (based on html:options) that did the same thing. Everything worked fine when testing in Tomcat, but when running our JSPs