Re: Map backed actionForm and pushing multiselect value in the map - No response :-(

2006-03-16 Thread vijay venkataraman
Struts Group, Is it such a dumb question that i am not getting any response? or is it a bug. If someone can let me know, that it is ok to tweak the bean util code i will. I am not sure whether it has other side effects. I just want to make sure that it does not cause obvious side effects. Str

Re: Map backed actionForm and pushing multiselect value in the map

2006-03-15 Thread vijay venkataraman
Can someone take time to answer this question. Thanks, Vijay vijay venkataraman wrote: |Hi, Sorry if you receive this twice. I didn't see this mail for more than 4 hours after sending it. I have a Form bean backed by a Map. I want to capture the responses of the input fields in the jsp in t

Re: Map-backed ActionForm and diff input types

2004-12-31 Thread Dakota Jack
There are lots of ways. You can, for example, include that information in the request object by putting it into the name/value pair. Jack On Fri, 31 Dec 2004 14:17:57 -0800, Oleg <[EMAIL PROTECTED]> wrote: > I have to apologize for not explaining myself more clearly. What I am > doing is buildi

Re: Map-backed ActionForm and diff input types

2004-12-31 Thread Oleg
I have to apologize for not explaining myself more clearly. What I am doing is building a form at run time. All the field information, including fields type is pulled from the database, so based on that value I wanted to display input type text, or input type hidden or whatever. It seem to me thoug

Re: Map-backed ActionForm and diff input types

2004-12-31 Thread Eddie Bush
You can't tell, based off the form, which fields are hidden or visible. This is something you have to know and hard-code into the page. So far as being different types, ... well, that's the same thing :-) EVERYthing is carried around in a form as text because if you were to have a form with non-

Re: Map-backed ActionForm and diff input types

2004-12-31 Thread Dakota Jack
Do you have a specific problem? I cannot tell what the worry is. Jack On Fri, 31 Dec 2004 00:47:57 -0800, Oleg <[EMAIL PROTECTED]> wrote: > Hi, > > Map-backed forms work great if all the fields are same input type, for > example text. What if its mixed: text field, check box, input hidden. > H

Re: map-backed ActionForm

2004-09-06 Thread Shinobu Kawai
Hi Claudia, > and the ActionForm: > > public class ProjektDDEForm extends ActionForm{ > >private Map enten; > >/** Creates a new instance of ProjektDDEForm */ >public ProjektDDEForm() { > >} > >public Map getEnten(){ >return enten; >} > >public void setEnt

RE: Map backed ActionForm, and jstl expression language

2004-07-02 Thread John Martin
ting the props string and failing... Hope it didn't make your night much later. Rgds, John -Original Message- From: Bill Siggelkow [mailto:[EMAIL PROTECTED] Sent: 02 July 2004 04:49 To: [EMAIL PROTECTED] Subject: Re: Map backed ActionForm, and jstl expression language John, I

Re: Map backed ActionForm, and jstl expression language

2004-07-01 Thread Bill Siggelkow
John, I apologize -- it' late and I am tired but I was having a little trouble following your post ... however, if you have a map-backed form (property) that you want to expose to JSTL you will need to expose the Map itself in a getter. Map getValuesMap() { return values; } Then you can access