Re: ActionForm not String type fields (properties)

2004-04-09 Thread Craig McClanahan
Stjepan Brbot wrote: Hi all, Does STRUTS ActionForm/DynaForm have to consist only of String object fields!? Although I saw this strong recommendation in some books and articles on Internet (since all parameters in Request are Strings) I use Action and DynaForms with java.lang.Integer fields and e

Database record create/update STRUTS pattern

2004-04-09 Thread Stjepan Brbot
Hi all, before I start with this large mail I have to say that I'm fully aware that STRUTS framework is intended for dealing with presentation and controll flow of application - not for persitance in database but this is exactly what I'd like to discuss with other experienced STRUTS users here.

Struts, JSP Prettifiers

2004-04-09 Thread Reda Mokrane
Hi, does anyone know of a code prettyfier (like Jalopy) to formatte Struts tag and JSP. thanks, - Post your free ad now! Yahoo! Canada Personals

ActionForm not String type fields (properties)

2004-04-09 Thread Stjepan Brbot
Hi all, Does STRUTS ActionForm/DynaForm have to consist only of String object fields!? Although I saw this strong recommendation in some books and articles on Internet (since all parameters in Request are Strings) I use Action and DynaForms with java.lang.Integer fields and everything works fine!

RE: [slightly OT] Any advice for 'jsp.error.useBean.duplicate' ?

2004-04-09 Thread Joe Hertz
> The old 'alternating-table-row-color' trick. > No doubt there's a better way of doing that too. Thought about using the "one minus 1|0" trick? Initialize some int to 1 or 0: int index = 0; Then in your loop do: index = 1 - index; And set the color based upon some two element array based on

Re: [slightly OT] Any advice for 'jsp.error.useBean.duplicate' ?

2004-04-09 Thread bOOyah
Curtis Taylor wrote: You're creating the bean "status" in the varStatus declaration in your c:forEach action. It's in scope in the loop as "status" already, so you don't need to re-initialize it. You can access its attributes inside your loop: ...etc. *sigh* You are, of course, correct. I

Re: [slightly OT] Any advice for 'jsp.error.useBean.duplicate' ?

2004-04-09 Thread Curtis Taylor
You're creating the bean "status" in the varStatus declaration in your c:forEach action. It's in scope in the loop as "status" already, so you don't need to re-initialize it. You can access its attributes inside your loop: ...etc. Just curious; what're you trying to do inside the loop? Curt

Any advice for 'jsp.error.useBean.duplicate' ?

2004-04-09 Thread bOOyah
It's killing me. Here's the snippet: [ServletException in:/pages/editscheduledetails.jsp] /pages/editscheduledetails.jsp(276,6) jsp.error.useBean.duplicate' org.apache.jasper.JasperException: /pages/editscheduledetails.jsp(276,6) My assumption in that the Jasper compiler thinks I have attempted t

RE: [SOLVED] DynaBeans with struts faces

2004-04-09 Thread Joe Hertz
Okay, I aint crazy. And I don't think it's a trivial mistake on my part now. In struts select boxes, and plain old HTML, if you don't specify a label for a given item, you get the value used as your label. In JSF however, if you don't specify "itemLabel" for a selectItem, you get that incredibl

Re: html:text for Date property

2004-04-09 Thread Richard Yee
Paul, You shouldn't keep an instance of SimpleDateFormat as an instance variable even though you are only using the parse method. The reason is that the SimpleDateFormat class is not thread-safe. This is caused by the fact that the DateFormat class isn't threadsafe due to the fact that a value (the

Re: Struts with Tomcat and Apache

2004-04-09 Thread Christian Bollmeyer
On Friday 09 April 2004 21:55, Ralf Schneider wrote: Hi, I've experimented with the same setup some time ago and found this helpful: http://cymulacrum.net/writings/tomcat5/c831.html HTH, -- Chris. NB. Luckily, there are binary versions of mod_jk2 available now, so you can skip the first part

[OT] RE: Hiding the .do part in the site address

2004-04-09 Thread Wendy Smoak
> From: Christian Bollmeyer [mailto:[EMAIL PROTECTED] > Nope :-) Yes, I stand corrected by Craig already. Tomcat used to redirect, and I'd occasionally dig up an ancient bug report where the decision was made in order to convince people that no, you can't make it stop redirecting. But now you

Re: Hiding the .do part in the site address

2004-04-09 Thread Christian Bollmeyer
On Friday 09 April 2004 22:42, Craig McClanahan wrote: > Wendy Smoak wrote: > >>From: Christian Bollmeyer [mailto:[EMAIL PROTECTED] > >>Already tried s/th like > >>in your index.jsp? :-) > > > >But then the URL will still have 'index.jsp' in it, at least if > > Tomcat is involved. IIRC, Tomcat re

Re: html:text for Date property

2004-04-09 Thread Paul Barry
This seems to work pretty well: private Date dateOfBirth; private static final DateFormat dateOfBirthFormat = new SimpleDateFormat("MM/dd/"); public Date getDateOfBirth() { return dateOfBirth; } public void setDateOfBirth(Date dateOfBirth) { this.dateOfBirth = dateOfBirth; } public

Re: Hiding the .do part in the site address

2004-04-09 Thread Christian Bollmeyer
On Friday 09 April 2004 21:56, Wendy Smoak wrote: > > From: Christian Bollmeyer [mailto:[EMAIL PROTECTED] > > Already tried s/th like > > in your index.jsp? :-) > > But then the URL will still have 'index.jsp' in it, at least if > Tomcat is involved. IIRC, Tomcat redirects to the welcome page, so

Servlet filters with Struts

2004-04-09 Thread Kommana, Sridhar
Hi, Iam using TimerFilter in my application which gives the response time taken for executing the each Action class. Does this will affect the performance of the application on production environment. Is there any known performance or stability issues with Servlet filters with Struts? Thanks

Re: Hiding the .do part in the site address

2004-04-09 Thread Craig McClanahan
Wendy Smoak wrote: From: Christian Bollmeyer [mailto:[EMAIL PROTECTED] Already tried s/th like in your index.jsp? :-) But then the URL will still have 'index.jsp' in it, at least if Tomcat is involved. IIRC, Tomcat redirects to the welcome page, so there's going to be something on the URL

Re: DynaBeans with struts faces

2004-04-09 Thread Craig McClanahan
Joe Hertz wrote: Craig McC writes: Could you refresh us on what your JSP code looks like now? I've since gone to a datatable. Below is struts-faces and non-struts versions I did recognize that the nested form bean approach wasn't the optimal way of doing once I could put my "real" obj

Re: html:text for Date property

2004-04-09 Thread Christian Bollmeyer
On Friday 09 April 2004 21:19, Paul Barry wrote: Generally, it's a good idea to have only String and boolean properties in an ActionForm and convert the information gathered for further processing lateron. For complex validations (like Dates), I usually check in validate() if the value entered can

Re: can iframe include files in web-info folder

2004-04-09 Thread Christian Bollmeyer
On Friday 09 April 2004 16:19, dream_and_yang wrote: No, you can't include such files directly, as the container forbids direct access to anything underneath WEB-INF. But of course, you can always wrap test.jsp in a ForwardAction and set your tag to load that instead: HTH, -- Chris > 1.in my j

RE: Hiding the .do part in the site address

2004-04-09 Thread Wendy Smoak
> From: Christian Bollmeyer [mailto:[EMAIL PROTECTED] > Already tried s/th like > in your index.jsp? :-) But then the URL will still have 'index.jsp' in it, at least if Tomcat is involved. IIRC, Tomcat redirects to the welcome page, so there's going to be something on the URL after the domain n

Struts with Tomcat and Apache

2004-04-09 Thread Ralf Schneider
Hi, I'm new to Struts and I'm trying to install Struts 1.1 with Tomcat 5.0.16 and Apache 2.0.48. The documentation only talks about Tomcat 3.x. My first try was to follow these instructions for Tomcat 3.2.1. I copied the war files included with the binary distribution into the webapps directory

RE: html:text for Date property

2004-04-09 Thread Wendy Smoak
> From: Paul Barry [mailto:[EMAIL PROTECTED] > Are their other ways to handle this, so I don't need 2 properties? String properties in the Form, and a utility class to do the conversions when you need to use it as a Date. (Possibly a BeanUtils Converter to do it as part of 'copyProperties' if yo

Is Struts 1.1 Compatible With Commons-Lang 2.0?

2004-04-09 Thread Hohlen, John C
Does anyone know whether Struts 1.1 is compatible with Commons-Lang 2.0? There are some utilities in the latest version of the Commons-Lang library that we'd really to use with our Struts 1.1 based application. Struts 1.1 comes with Commons-Lang 1.0.1 Thanks, JOHN ---

RE: Question about throwing an exception in the ValidatorForm validate method.

2004-04-09 Thread Stephan Jones
The RequestProcessor processPreprocess(request, response) method seems the best but I'm not sure how to override it for my first login page where the valid session is not set up yet. Can I give a specific requestProcessor for an individual action mapping? Thanks for the first response Niall. --

Re: Hiding the .do part in the site address

2004-04-09 Thread Christian Bollmeyer
On Friday 09 April 2004 21:33, Erez Efrati wrote: Already tried s/th like in your index.jsp? :-) HTH, -- Chris. > Hi, > > Like all Struts application I have the index.jsp redirecting the user > client to my "home.do" struts action. > > Is it possible to get rid of the "home.do" in the address

Re: html:text for Date property

2004-04-09 Thread Paul Barry
Yeah, I guess I could do that. I think need 2 properties. I would create a dateAsString property, have the form get and set that, and then have the getters and setters set and convert the actual Date. This way I can call getDate to get a Date and getDateAsString to get it as a formatted Stri

Re: [solved] RE: no getter method found for property - using DynaActionForms

2004-04-09 Thread bradyh
Uh...you do mean "form-property" (with a "t") right? Though I like form-properly...it's more polite. :-) Brady > Found my error! I seem to have problems with spelling ("form-properly"? > hehe) > > Sorry for the spam :) > > Jin Lee > -Original Message- > From: Jin Lee [mailto:[EMAIL P

[solved] RE: no getter method found for property - using DynaActionForms

2004-04-09 Thread Jin Lee
Found my error! I seem to have problems with spelling ("form-properly"? hehe) Sorry for the spam :) Jin Lee -Original Message- From: Jin Lee [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 11:16 AM To: [EMAIL PROTECTED] Subject: no getter method found for property - using DynaAct

RE: html:text for Date property

2004-04-09 Thread Slattery, Tim - BLS
> ActionForm has a object that has a Date property that I want to set. > > So I have > > > > If I populate the that property in the Action like this: > > MyObject obj = new MyObject(); > obj.setDate(new Date()); > form.setObject(obj); > > The html:text tag does a toString() on the object.date

Re: DynaBeans with struts faces

2004-04-09 Thread Joe Hertz
Craig McC writes: > Could you refresh us on what your JSP code looks like now? I've since gone to a datatable. Below is struts-faces and non-struts versions I did recognize that the nested form bean approach wasn't the optimal way of doing once I could put my "real" object into the UI, so I'v

html:text for Date property

2004-04-09 Thread Paul Barry
What is the best way to deal with a Date property in an ActionForm? My ActionForm has a object that has a Date property that I want to set. So I have If I populate the that property in the Action like this: MyObject obj = new MyObject(); obj.setDate(new Date()); form.setObject(obj); The html

controller cache="false" and client cache

2004-04-09 Thread Paulo Alvim
Hi! I'm trying to implement a Filter that tells the Browser to cache images for a few URLs as the article from http://www.onjava.com/pub/a/onjava/2004/03/03/filters.html ...but it isn't working with my Struts apps. I'd like to know if the cache="false" attribute in the controller section could

Re: Question about throwing an exception in the ValidatorForm validate method.

2004-04-09 Thread Niall Pemberton
Do you want to do this on a form by form basis or for all forms? If you want to do it for all forms then you could either customise RequestProcessor (maybe in the processPreprocess(request, response) method) or use a Filter. If you need to do it on a form by form basis, then why not skip validati

RE: Hiding the .do part in the site address

2004-04-09 Thread MARU, SOHIL (SBCSI)
Use the to specify the home page in your web.xml. That should allow you to get to the home page without .do. -Original Message- From: Erez Efrati [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 2:33 PM To: 'Struts Users Mailing List' Subject: Hiding the .do part in the site addres

Hiding the .do part in the site address

2004-04-09 Thread Erez Efrati
Hi, Like all Struts application I have the index.jsp redirecting the user client to my "home.do" struts action. Is it possible to get rid of the "home.do" in the address bar so at least in the site home page the site address will show a clean address of www.mysite.com

no getter method found for property - using DynaActionForms

2004-04-09 Thread Jin Lee
Hey all, I have a very simple form and a DynaActionForm associated with it. When I try to load the page I get the following error: javax.servlet.ServletException: No getter method for property SelectCourseID of bean org.apache.struts.taglib.html.BEAN org.apache.jasper.runtime.PageContextI

Question about throwing an exception in the ValidatorForm validate method.

2004-04-09 Thread Stephan Jones
I have a problem I need advice solving. The Validate method does not allow me to check if the session has expired and throw a suitable exception. I have the possible scenario where a user calls up a page. Leaves it idle long enough to expire the session. Then hits the update button. What happens

Re: DynaBeans with struts faces

2004-04-09 Thread Craig McClanahan
Joe Hertz wrote: Matthias- I've tried it both ways. I suspect the problem is my JSTL Knowledge. Code follows. The problem, I believe boils down to, "How do I get at the item var declared in the datatable/foreach? I can't use a ".", right? Actually, you can, in JSF expressions ("#{foo.bar}"

Re: Custom ActionForward subclass in web.xml

2004-04-09 Thread Niall Pemberton
Well there is for global forwards, but it seems to be missing for the forwards in an action. For global forwards you can create your own ModuleConfigFactory, in which you can set the global forward class name (as well as the Action Mapping class). But from what I see, you can't change the default c

Re: Slightly OT: Preventing of buffer flush with tiles:insert

2004-04-09 Thread Richard Yee
Shahak, Why won't a filter work in you Servlet 2.3 environment? Filters exist in the Servlet 2.3 spec. They don't exist in the Servlet 2.2 spec. Regards, Richard --- [EMAIL PROTECTED] wrote: > I'm trying to use a custom tag to gzip (compress) > pages (filter won't work because I'm in a servlet >

RE: No Suitable Driver problem

2004-04-09 Thread MARU, SOHIL (SBCSI)
Never mind, even though I am using jdk1.4 and tomcat5.0, I had to replace ojdbc14.jar with classes version to get it to work. -Original Message- From: MARU, SOHIL (SBCSI) Sent: Friday, April 09, 2004 11:29 AM To: 'Struts Users Mailing List' Subject: RE: No Suitable Driver problem I mana

RE: No Suitable Driver problem

2004-04-09 Thread MARU, SOHIL (SBCSI)
I managed to solve this one, my database url was missing the schema name, that was causing the problem. I changed it from jdbc:oracle:[EMAIL PROTECTED] To jdbc:oracle:thin:[EMAIL PROTECTED] But it is still throwing an exception though a different one. Any pointers? java.lang.NullPointerException

Re: can iframe include files in web-info folder

2004-04-09 Thread Richard Yee
No, an iframe cannot access resources under WEB-INF. Note that 'WEB-INF' is case-sensitive. You will eventually encounter problems if you don't use 'WEB-INF' in your paths. Files located under the WEB-INF directory are only accessible from within the web application (ie. from servlets). Regards,

RE: [50% SOLVED] Resetting Multibox problems

2004-04-09 Thread Wendy Smoak
> From: Mathieu Grimault [mailto:[EMAIL PROTECTED] > I've found a way of bypassing the problem by using a logic:equal and > logic:notEqual inside the jsp and testing my row value. This way, the > display is correct... it's just not clean. You really shouldn't need to do all that. Here's a workin

RE: No Suitable Driver problem

2004-04-09 Thread MARU, SOHIL (SBCSI)
I am using oracle. And my driver jar(ojdbc14.jar) is in tomcat_home/commom/lib -Original Message- From: Jose Rubio [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 10:41 AM To: Struts Users Mailing List Subject: Re: No Suitable Driver problem Do you have your client driver install

Re: No Suitable Driver problem

2004-04-09 Thread Jose Rubio
Do you have your client driver installed? In DB2 I have to install the driver in my local machine and that also sets the path up (Db2 uses some native dll stuff) in order to get the driver to load. I used to get the same error. I hope it helps. Jose Quoting "MARU, SOHIL (SBCSI)" <[EMAIL PROTE

No Suitable Driver problem

2004-04-09 Thread MARU, SOHIL (SBCSI)
Hello All, I have been scouring the mailing list archives and lot of other places. I am seeing a problem configuring a datasource with Tomcat. I saw a lot of posts where the drivername was not being picked up but none where the driver name was being picked up and yet people were getting the sam

Re: about and "response already committed" exception

2004-04-09 Thread Kumar M
Two things come to mind: 1. Try increasing the buffer size on myjsp.jsp. Default is 8kb 2. Make sure that you are not changing the header portion of the response in your included jsp page. [EMAIL PROTECTED] wrote: > Buddies, Can anyone help with my below problem? > > >> From: "Mu Mike" <[EMAIL

can iframe include files in web-info folder

2004-04-09 Thread dream_and_yang
1.in my jsp page information.jsp I do this: but when the Tomcat 5.0 just tell me that such page is not available. 2.Then i try another way. i created another page called import page,in this page: <%jsp:include page="information.jsp" %> Here HTMLUrl comes from my Struts Action,and refe

can iframe include files in web-info folder

2004-04-09 Thread dream_and_yang
1.in my jsp page information.jsp I do this: but when the Tomcat 5.0 just tell me that such page is not available. 2.Then i try another way. i created another page called import page,in this page: <%jsp:include page="information.jsp" %> Here HTMLUrl comes from my Struts Action,and refe

[50% SOLVED] Resetting Multibox problems

2004-04-09 Thread Mathieu Grimault
I've found a way of bypassing the problem by using a logic:equal and logic:notEqual inside the jsp and testing my row value. This way, the display is correct... it's just not clean. New jsp : " checked="checked"> "> Old jsp : - Original Message - From: "Mathieu G

Re: Custom attribute on

2004-04-09 Thread James Mitchell
Are you trying to map your text field to a database column? -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx MSN: [EMAIL PROTECTED] Yahoo IM:[EMAIL PROTECTED] - Original Message - From: "Igor Antonacci" <[EMAIL PROTECTED]> To: <[EM

Custom attribute on

2004-04-09 Thread Igor Antonacci
Hi All, again with an issue :). I'd like to put a new (non-standard) attribute on tag. Whenever I try, Struts raise an error saying there's no setter method for that attribute. Here an example: The "datafld" attribute is used just on client-side (on resulting tag). Is there any solution

Re: DynaValidatorForm help

2004-04-09 Thread Brad Balmer
Thanks for the responses. I was using the way that you showed. I figured out that my problem was with my struts-config.xml where I should have been using:org.apache.struts.validator.DynaValidatorForm instead of org.apache.struts.action.DynaValidatorForm. Adam Hardy wrote: DynaValidatorForm d

[SOLVED} RE: DynaValidatorActionForm client-side validation

2004-04-09 Thread Igor Antonacci
Hi, I solved with your advice. Thanks a lot! Igor. > -Original Message- > From: Saul Q Yuan [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 08, 2004 10:03 PM > To: 'Struts Users Mailing List' > Subject: RE: DynaValidatorActionForm client-side validation > > Hmmm, I don't seem to have

can not retrieve action mapping?

2004-04-09 Thread Mu Mike
I have this.jsp under the dir /this, it has a form defined like the below ... while in struts-that-config.xml, I have that.do defined yet it tells can not retrieve the action mapping, why? _ 与联机的朋友进行交流,请使用 MSN Messenger: http://mes

Resetting Multibox problems

2004-04-09 Thread Mathieu Grimault
Re-Hello ! In addition to my question, i've seen that spy the reset() and constructor call of my actionForm : life cylcle : - constructor -> first access on the jsp - reset -> first access on the jsp - display of the jsp and submit - constructor -> after submiting - reset -> after submiting - t

Re: DynaValidatorForm help

2004-04-09 Thread Adam Hardy
DynaValidatorForm dynaForm = (DynaValidatorForm) form; String value = (String) dynaForm.get("myFieldName"); On 04/09/2004 02:52 PM Brad Balmer wrote: Using the DynaValidatorForm, how do you get the form variable data out of the form inside the action? All examples I've seen are purely the setu

Re: DynaValidatorForm help

2004-04-09 Thread Niall Pemberton
Cast the ActionForm to a DynaBean and then use get(String property) Niall - Original Message - From: "Brad Balmer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 09, 2004 1:52 PM Subject: DynaValidatorForm help > Using the DynaValidatorForm, how do you get the form va

Re: Validation.xml form name parameter

2004-04-09 Thread Adam Hardy
Are you sure that it is validating? It doesn't sound like it should. Have you got javascript error notifications turned on in your browser? If you don't, you might be getting javascript errors that you never see. The javascript function that is executed when you hit the submit button is specified b

DynaValidatorForm help

2004-04-09 Thread Brad Balmer
Using the DynaValidatorForm, how do you get the form variable data out of the form inside the action? All examples I've seen are purely the setup and none show the action getting the values. My struts-config.xml: My validation.xml:

RE: DynaBeans with struts faces

2004-04-09 Thread Joe Hertz
Matthias- I've tried it both ways. I suspect the problem is my JSTL Knowledge. Code follows. The problem, I believe boils down to, "How do I get at the item var declared in the datatable/foreach? I can't use a ".", right? Then again, it could be something very different FAIK. I'm getting the

RE: DynaBeans with struts faces

2004-04-09 Thread Matthias Wessendorf
Joe, can you provide some code ? btw. i would use -Tag for "forEach" in JSF and for rendering like this: note with you can "group" components logicaly. dataTable has a "footer" and a "header" it renders and for a HTML-Table and look at

RE: Validation.xml form name parameter

2004-04-09 Thread Prasad, Kamakshya
Hi, ValidatorActionForm KP -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 8:33 PM To: Struts Users Mailing List Subject: Re: Validation.xml form name parameter and which form class? ValidatorForm or ValidatorActionForm On 04/09/2004 12:53 P

Re: DynaValidatorActionForm client-side validation

2004-04-09 Thread Niall Pemberton
A patch recently went into the various flavours of validator forms which split out the logic which determines the validation "key" into a separate method - so if you look at the current versions of either ValidatorActionForm or DynaValidatorActionForm - they now only contain a very simple getValida

RE: DynaBeans with struts faces

2004-04-09 Thread Joe Hertz
Matthias- I had most of the struts-cfg changes you mention, because they came in the struts-faces docs. Maybe my problem is my JSTL knowledge (surely it is, the question is, "Is it now?"). Maybe if it iss just easier if I explain what I am trying to accomplish. I have List of Objects that I w

RE: Tiles basics

2004-04-09 Thread Mainguy, Mike
You'll want to go to http://struts.apache.org, but the tiles stuff is included with struts (at least 1.1). I'd suggest downloading a new copy of struts (especially if you're using the old 1.0 version). I believe there is even an example webapp that uses tiles included if you download the proper

multibox not resetting

2004-04-09 Thread Mathieu Grimault
Hello ! Multibox made me crazy !! After having each problem detailled on the mailing list i've got another not detailled... I've got a jsp page with a multibox inside an iterate. the initial display is correct and i can correctly retrieve the selected or unselected values and, then write to the

Re: Validation.xml form name parameter

2004-04-09 Thread Adam Hardy
and which form class? ValidatorForm or ValidatorActionForm On 04/09/2004 12:53 PM Prasad, Kamakshya wrote: Hi, I am using 1.1 version. KP -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 7:48 PM To: Struts Users Mailing List Subject: Re: Valid

RE: Validation.xml form name parameter

2004-04-09 Thread Prasad, Kamakshya
Hi, I am using 1.1 version. KP -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 7:48 PM To: Struts Users Mailing List Subject: Re: Validation.xml form name parameter Kamakshya Which version of Validator and which Form class are you using? A

Re: Validation.xml form name parameter

2004-04-09 Thread Adam Hardy
Kamakshya Which version of Validator and which Form class are you using? Adam On 04/09/2004 10:08 AM Prasad, Kamakshya wrote: HI, Is it a bug or has been intentionally done like that? I have a form with lots of CRUD buttons. The action path is "/maintainEmployeeDetails". I am using DispatchAct

Re: DynaValidatorActionForm client-side validation

2004-04-09 Thread Adam Hardy
Yes I know, and it's for a reason. DynaValidatorActionForm doesn't exist by chance. Regarding the javascript function names, it's not the main validation function name that's the problem - it's the secondary functions which instantiate the arrays for the different validations, e.g. surveyForm_

RE: about and "response already committed" exception

2004-04-09 Thread Mu Mike
Buddies, Can anyone help with my below problem? From: "Mu Mike" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: about and "response already committed" exception Date: Fri, 09 Apr 2004 01:45:22 + Hi,all I m using a in my jsp file(

RE: DynaBeans with struts faces [Was Right Back in My Struts Face]

2004-04-09 Thread Matthias Wessendorf
Hi Joe, the thing with was noticed in the "online" release-notes that where shiped with the beta.(not more online, i guess) In Early_Access_X there where the -Tag. however, you must add the following to struts-cfg.xml: note, i use the tiles-candidate for supporting tiles in my jsf-sturts-

multibox not resetting

2004-04-09 Thread Mathieu Grimault
Hello ! Multibox made me crazy !! After having each problem detailled on the mailing list i've got another not detailled... I've got a jsp page with a multibox inside an iterate. the initial display is correct and i can correctly retrieve the selected or unselected values and, then write to the d

RE: DynaBeans with struts faces [Was Right Back in My Struts Face]

2004-04-09 Thread Matthias Wessendorf
Hi Joe, the thing with was noticed in the "online" release-notes that where shiped with the beta.(not more online, i guess) In Early_Access_X there where the -Tag. however, you must add the following to struts-cfg.xml: note, i use the tiles-candidate for supporting tiles in my jsf-sturts-

Validation.xml form name parameter

2004-04-09 Thread Prasad, Kamakshya
HI, Is it a bug or has been intentionally done like that? I have a form with lots of CRUD buttons. The action path is "/maintainEmployeeDetails". I am using DispatchAction class for the same. But each of these buttons has specific javascript validations. So in the validation.xml insted of givi