RE: DynaValidatorForm help?

2006-11-21 Thread Mano Chinthaka Dasanayaka
rg Subject: DynaValidatorForm help? Hi friends first of all thanks for your great help situation is: i have to setup some details and display those details for the setup service, i use DynaValidatorForm. it is working well for validations also. i want to use the same DyanActionForm for view also but probl

Re: DynaValidatorForm help?

2006-11-21 Thread Nuwan Chandrasoma
MAIL PROTECTED]> To: Sent: Tuesday, November 21, 2006 10:38 AM Subject: Re: DynaValidatorForm help? Hi friends i don't have idea about DTO can you give me some idea please ur's Mallik nuwan chandrasoma-2 wrote: Hi, The loop is wrong, your are overwriteing the same form

Re: DynaValidatorForm help?

2006-11-21 Thread Mallik
; request.setAttribute("BLOCKS", blocks); >> return mapping.findForward("continue"); >> >> } >> ----- >> this is my jsp >>

RE: DynaValidatorForm help?

2006-11-21 Thread Mano Chinthaka Dasanayaka
: Tuesday, November 21, 2006 12:51 PM To: user@struts.apache.org Subject: RE: DynaValidatorForm help? hi friend i have no idea about resetting this is my source code please help me in finding worng.. Action Class - public

Re: DynaValidatorForm help?

2006-11-21 Thread Nuwan Chandrasoma
Hi, Can i see the you jsp code, are you iterateing the list propertly Thanks, Nuwan - Original Message - From: "Mallik" <[EMAIL PROTECTED]> To: Sent: Tuesday, November 21, 2006 6:28 AM Subject: DynaValidatorForm help? Hi friends first of all thanks for your great

RE: DynaValidatorForm help?

2006-11-21 Thread Mallik
------ Hi, Are you resetting the property correctly in your action class? Using, PropertyUtils.setSimpleProperty(form, "obj", List);? Regards, Mano -- View this message in context: http://www.nabble.com/DynaValidatorForm-help--t

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

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

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: