RE: hey again

2006-05-28 Thread Patil, Sheetal
Hi When u selects multiple values then it will store array of the data type of your values in list box If nothing is selected it will store null -Original Message- From: Abhimanyu Koul [mailto:[EMAIL PROTECTED] Sent: Monday, May 29, 2006 10:47 AM To: Struts Mailing list Subject: re:

re:hey again

2006-05-28 Thread Abhimanyu Koul
we display the values in a list box (multiple select) using a List object. What object is returned when we select a few values. i mean what object stores the selected values. Is it also a List? Abhimanyu Koul FinEng Solutions (P) Ltd. Dani Compound, 158, Vidyanagari Marg, Kalina, Santacruz (Eas

Re: hey again

2006-05-28 Thread paz . periasamy
Can you send the questions? Thanks and regards, Pazhanikanthan. P (Paz) Consultant for AXA, HCL Australia Services Pty. Ltd. Off : +61-3-9618-4085 Mob : +61-0411-354-838 "Abhimanyu Koul" <[EMAIL PROTECTED]> 29/05/2006 02:55 PM Please respond to "Struts Users Mailing List" To:

hey again

2006-05-28 Thread Abhimanyu Koul
hi all! I had asked a question a few days ago but i didn't get any response. Isn't there anybody who can help me with that. Please suggest something! Abhimanyu Koul FinEng Solutions (P) Ltd. Dani Compound, 158, Vidyanagari Marg, Kalina, Santacruz (East), Mumbai - 400 098 Mobile : +91 9860582533

Re: Hi, need urgent help

2006-05-28 Thread Suresh Babu S
Hi Lakshmi, i can understand your situation. if you have any problem, post here. i hope our readers will definitely help you out Suresh Babu S On 5/26/06, Medicherla Lakshmi <[EMAIL PROTECTED]> wrote: Hi Everyone, Am Lakshmi. Am working on a web application in struts in a company. Am alone o

Re: Session form IE problem

2006-05-28 Thread Rizwan Merchant
I tried that...still having the same problem. Basically, having a file input type element somehow causes all parameters in the request to be lost. Not sure, but I think the links below are related to the problem I am having. Can anyone confirm this please? http://marc.theaimsgroup.com/?l=struts

Re: Session form IE problem

2006-05-28 Thread Martin Gainty
Frank Z is correct check out example at http://validator.w3.org/file-upload.html M- This email message and any files transmitted with it contain confidential information intended only for the person(s) to whom this email message is addressed. If you have received this email message in error,

Re: Session form IE problem

2006-05-28 Thread Bart Busschots
Rizwan Merchant wrote: I tried your suggestion and put a instead of the tag...still having the same problem. So we know its not the struts tag, but the html:file element and the multipart/form-data encoding thats the problem.. any further suggestions? I am out of ideas on this one now!! I'

Re: Session form IE problem

2006-05-28 Thread Rizwan Merchant
I tried your suggestion and put a instead of the tag...still having the same problem. So we know its not the struts tag, but the html:file element and the multipart/form-data encoding thats the problem.. any further suggestions? I am out of ideas on this one now!! Frank W. Zammetti wrote:

Validating struts elements of array type in javascript

2006-05-28 Thread Rizwan Merchant
Hi, I have a Order form that contains an Order object. One of the properties of the order object is an array called "packages". Each package has a height, weight and length. In the jsp, we create as many rows as there are packages in the order and the customer can define the dimensions of each

Re: Struts, how to create wizard pages ??

2006-05-28 Thread Jakub Milkiewicz
MAybe try stuts dialog. I have never used it but looks really nice. 2006/5/26, Chaudhary, Harsh <[EMAIL PROTECTED]>: Its not really that hard or even a design issue. Just have one separate Action class and Action form for each page. Call the action when the user hits submit, next etc. In the a

internalization validation.xml

2006-05-28 Thread Jakub Milkiewicz
Hi I am using struts validator to validate my form. I have a problem with validwhen when i use non english characters in comparison section. I tried: test (*this* == 'dowód') or

Re: Session form IE problem

2006-05-28 Thread Frank W. Zammetti
I didn't see anything unusual in the rendered HTML... I didn't really expect to, but you never know. Like Paul, I too have been burned plenty of times by IE settings or simply clearing cache, etc... to be fair, I've been burned quite a few times by FF doing similar things, like when you clear

Re: Session form IE problem

2006-05-28 Thread Paul Benedict
Do you have auto complete turned on? Make sure you don't. Also for good measure, clear out any form field data in your browser through IE preferences. I've seen something simlar happen before; this is most likely a browser setting issue. --- Rizwan Merchant <[EMAIL PROTECTED]> wrote: > > Rendere

Re: Session form IE problem

2006-05-28 Thread Rizwan Merchant
Rendered HTML is attached below. I did find a couple of posts on the Struts mailing list, just trying to figure out if i am having the same problem as mentioned in these posts.. http://marc.theaimsgroup.com/?l=struts-user&m=113102415703809&w=2 http://issues.apache.org/bugzilla/show_bug.cgi?id

Re: Session form IE problem

2006-05-28 Thread Frank W. Zammetti
Could you post the RENDERED HTML? Sometimes something sticks out there that isn't apparent in the source. Frank Rizwan Merchant wrote: ok..!! more on this..I was playing around with the page that was giving me the problem...(I have attached the entire page below). When I comment out the ro

Re: Session form IE problem

2006-05-28 Thread Rizwan Merchant
ok..!! more on this..I was playing around with the page that was giving me the problem...(I have attached the entire page below). When I comment out the rows that define an html:file element everything seems to work fine...going back and forth between the 2 pages works and the data in the ses

validating an integer in an array

2006-05-28 Thread Thomas Bailey
Hi, I am struggling with something which must be simple - Ive spent a day or so going through examples but could not find anything covering this ! I want to be able to fill an array of values in my form and use the validator to ensure they are all of type integer. I am using string ar

Re: Blank page when trying to forward

2006-05-28 Thread Shervin Asgari
LOL. I have been busting my ass off for days wondering about this, and I can't believe I could miss something that obvious. It really looks like that's the reason. I will try it out when I get back to work on monday. Thanks alot Gareth Shervin Gareth Evans wrote: There is no exception because

Re: Session form IE problem

2006-05-28 Thread Frank W. Zammetti
Actually, I believe GET is the default: http://www.htmlhelp.com/reference/html40/forms/form.html Are you using Struts tags? I don't remember if you said... they may render a method attribute that overrides this... do a view source and see what's there. If nothing, then it's probably a GET...

Re: Session form IE problem

2006-05-28 Thread Rizwan Merchant
Thanks Bart, silly question..but where do I determine if post is being used or get? My element does not specify a method attribute (which would determine "post" or "get" as far as i know)..so wouldnt it default to post? its probably 4.30 in the evening there...so no excuses abt the time this t