RE: readonly - select box

2003-07-08 Thread sriram
I don't think supports "readOnly". That's the reason why we need to use hidden variable to store the current value of -Original Message- From: leonZ [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 8:35 AM To: [EMAIL PROTECTED] Subject: Re: readonly - sele

RE: readonly - select box

2003-07-08 Thread sriram
I am trying to use validator with validator-rules.xml (for struts1.0). When I deploy the .ear file on JBoss, I'm getting the following error: 10:07:15,247 INFO [Engine] validator: Skipping validation rules file from '/WEB -INF/validator-rules.xml'. No stream could be opened. I tried removing

Re: readonly - select box

2003-07-08 Thread leonZ
Why don't u use the "readOnly" instead of "disabled"? That's not necessary to use the hidden input in this case. "sriram" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > How to make a readonly (not disabled). > > For , I can use 'readonly' but this does not exist for > > Any sugges

RE: readonly - select box

2003-07-05 Thread sriram
Thanks Dan. It worked. -Original Message- From: Dan Tran [mailto:[EMAIL PROTECTED] Sent: Saturday, July 05, 2003 10:27 AM To: Struts Users Mailing List Subject: Re: readonly - select box forget to mention, You need to add a hidden field which has the same value as the disabled select

Re: readonly - select box

2003-07-04 Thread Dan Tran
forget to mention, You need to add a hidden field which has the same value as the disabled select field. -Dan - Original Message - From: "sriram" <[EMAIL PROTECTED]> Newsgroups: Struts Sent: Friday, July 04, 2003 9:40 PM Subject: RE: readonly - select box > If

RE: readonly - select box

2003-07-04 Thread sriram
an [mailto:[EMAIL PROTECTED] Sent: Saturday, July 05, 2003 10:12 AM To: Struts Users Mailing List Subject: Re: readonly - select box Use disabled="true" -D - Original Message - From: "sriram" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 04, 2

Re: readonly - select box

2003-07-04 Thread Dan Tran
Use disabled="true" -D - Original Message - From: "sriram" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 04, 2003 9:04 PM Subject: readonly - select box > How to make a readonly (not disabled). > > For , I can use '

readonly - select box

2003-07-04 Thread sriram
How to make a readonly (not disabled). For , I can use 'readonly' but this does not exist for Any suggestions? Please inform.