Re: Dynamic Form Submission

2004-08-17 Thread Bill Siggelkow
Oops -- I missformatted my last e-mail -- I wrote the part starting with 
"Ahh ..." not Marco. Marco wrote the stuff that followed about using 
DispatchAction. My bad ...


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Dynamic Form Submission

2004-08-17 Thread Bill Siggelkow
Marco Mistroni wrote:
Ahh ... but the poster said he was using Validator -- he could subclass 
ValidatorActionForm (or DynaValidatorActionForm) -- or he could get 
"fancy" (or "complicated" depending on your perspective) and use 
requiredif or validwhen against the field that indicated if it was READ 
or SAVE.

Hello,
	How about using a DispatchAction triggered by a 
Parameter, let's say 'buttonSelected', which would be
Either insert/read/delete etc

In ur validation you check for the value of that parameter in order
To perform validation...
Hope this helps
Regards
marco
-Original Message-
From: Christopher Kwiatkowski [mailto:[EMAIL PROTECTED] 
Sent: 17 August 2004 15:38
To: [EMAIL PROTECTED]
Subject: Dynamic Form Submission

I want to create a form that has two different actions.  The user will
have
a button to "READ" information in from the database and a button to
"SAVE"
information into the database after modification.  I currently use
Validator
to validate my forms and when the user clicks on the "READ" button then
Validator takes over and gives the user errors.  I don't want the form
to be
validated when the user is attempting a "READ".  I only want the form to
be
validated if the user is attempting to do a "SAVE".  Unless anyone has a
better solution (which I hope someone does), I have decided that I need
to
create two action classes.  One that will handle the read logic without
going through validation and one that will handle the save logic and go
through the validation.  My question with this solution is how do I
elegantly provide this functionality on the jsp?  Do I put the "SAVE"
submit
button within one form and the "READ" submit button within another form
and
have different actions associated with each form?  Or, is there a better
way?
Thanks,
Christopher Kwiatkowski

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Dynamic Form Submission

2004-08-17 Thread Marco Mistroni
Hello,
How about using a DispatchAction triggered by a 
Parameter, let's say 'buttonSelected', which would be
Either insert/read/delete etc

In ur validation you check for the value of that parameter in order
To perform validation...

Hope this helps
Regards
marco

-Original Message-
From: Christopher Kwiatkowski [mailto:[EMAIL PROTECTED] 
Sent: 17 August 2004 15:38
To: [EMAIL PROTECTED]
Subject: Dynamic Form Submission

I want to create a form that has two different actions.  The user will
have
a button to "READ" information in from the database and a button to
"SAVE"
information into the database after modification.  I currently use
Validator
to validate my forms and when the user clicks on the "READ" button then
Validator takes over and gives the user errors.  I don't want the form
to be
validated when the user is attempting a "READ".  I only want the form to
be
validated if the user is attempting to do a "SAVE".  Unless anyone has a
better solution (which I hope someone does), I have decided that I need
to
create two action classes.  One that will handle the read logic without
going through validation and one that will handle the save logic and go
through the validation.  My question with this solution is how do I
elegantly provide this functionality on the jsp?  Do I put the "SAVE"
submit
button within one form and the "READ" submit button within another form
and
have different actions associated with each form?  Or, is there a better
way?
Thanks,
Christopher Kwiatkowski


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Dynamic Form Submission

2004-08-17 Thread Michael McGrady
Christopher Kwiatkowski wrote:
I want to create a form that has two different actions.  The user will have
a button to “READ” information in from the database and a button to “SAVE”
information into the database after modification.  I currently use Validator
to validate my forms and when the user clicks on the “READ” button then
Validator takes over and gives the user errors.  I don’t want the form to be
validated when the user is attempting a “READ”.  I only want the form to be
validated if the user is attempting to do a “SAVE”.  Unless anyone has a
better solution (which I hope someone does), I have decided that I need to
create two action classes.  One that will handle the read logic without
going through validation and one that will handle the save logic and go
through the validation.  My question with this solution is how do I
elegantly provide this functionality on the jsp?  Do I put the “SAVE” submit
button within one form and the “READ” submit button within another form and
have different actions associated with each form?  Or, is there a better
way?
Thanks,
Christopher Kwiatkowski
 

Lo, Christopher,
You might get some ideas from 
http://wiki.apache.org/struts/StrutsCatalogMultipleImageTagsSimplified

Michael

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Dynamic Form Submission

2004-08-17 Thread Bill Siggelkow
First, I assume that you are using path mappings for Validator.
You can use two separate forms as you suggested; however, if you don't 
want to duplicate form fields and it makes more sense from a usability 
perspective to have a single form--you can change the action for the 
form on the fly using JavaScript like the following:



  function swapAction(control) {
formAction = document.getElementById("empForm").action;
if (control.checked)
  newAction = '';
else
  newAction = '';
document.getElementById("empForm").action = newAction;
  }


New Employee: 
… rest of the page

Christopher Kwiatkowski wrote:
I want to create a form that has two different actions.  The user will have
a button to “READ” information in from the database and a button to “SAVE”
information into the database after modification.  I currently use Validator
to validate my forms and when the user clicks on the “READ” button then
Validator takes over and gives the user errors.  I don’t want the form to be
validated when the user is attempting a “READ”.  I only want the form to be
validated if the user is attempting to do a “SAVE”.  Unless anyone has a
better solution (which I hope someone does), I have decided that I need to
create two action classes.  One that will handle the read logic without
going through validation and one that will handle the save logic and go
through the validation.  My question with this solution is how do I
elegantly provide this functionality on the jsp?  Do I put the “SAVE” submit
button within one form and the “READ” submit button within another form and
have different actions associated with each form?  Or, is there a better
way?
Thanks,
Christopher Kwiatkowski

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Dynamic Form Submission

2004-08-17 Thread Erik Weber
You can use the same Action and the same ActionForm, but you can map two 
different action mappings in struts-config.xml. Set validation to "true" 
on one and "false" on the other.

Hope that helps,
Erik
Christopher Kwiatkowski wrote:
I want to create a form that has two different actions.  The user will have
a button to “READ” information in from the database and a button to “SAVE”
information into the database after modification.  I currently use Validator
to validate my forms and when the user clicks on the “READ” button then
Validator takes over and gives the user errors.  I don’t want the form to be
validated when the user is attempting a “READ”.  I only want the form to be
validated if the user is attempting to do a “SAVE”.  Unless anyone has a
better solution (which I hope someone does), I have decided that I need to
create two action classes.  One that will handle the read logic without
going through validation and one that will handle the save logic and go
through the validation.  My question with this solution is how do I
elegantly provide this functionality on the jsp?  Do I put the “SAVE” submit
button within one form and the “READ” submit button within another form and
have different actions associated with each form?  Or, is there a better
way?
Thanks,
Christopher Kwiatkowski
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]