RE: Simple html:submit question

2003-08-14 Thread Alex Shneyderman
Use html:image tag. -Original Message- From: Norr, Peter [mailto:[EMAIL PROTECTED] Sent: Monday, August 11, 2003 6:26 PM To: 'Struts Users Mailing List' Subject: Simple html:submit question How do I use my own image in a html:submit/ or html:cancel/ tag

Re: Simple html:submit question

2003-08-14 Thread Mark Lowe
PROTECTED] Sent: Tuesday, August 12, 2003 10:43 AM To: 'Struts Users Mailing List' Subject: RE: Simple html:submit question Ya, u can do that or u can use a html:link tag(generates a href in html) like below. You ultimately submit the form in the javascript fn of href. html:link href

RE: Simple html:submit question

2003-08-14 Thread Mark Galbreath
Probably because HTML doesn't. -Original Message- From: Norr, Peter [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 11:05 AM To: 'Struts Users Mailing List' Subject: RE: Simple html:submit question Any reason why the struts html:submit/ tag does not support the src attribute

RE: Simple html:submit question

2003-08-14 Thread Norr, Peter
Should I use an onclick method handler to the image tag so I can submit the form?? -Original Message- From: Alex Shneyderman [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 7:29 AM To: 'Struts Users Mailing List' Subject: RE: Simple html:submit question Use html:image tag

RE: Simple html:submit question

2003-08-14 Thread Alex Shneyderman
; there is more parameters that are submitted with this type of image button) Alex. -Original Message- From: Ravi Kora [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 10:43 AM To: 'Struts Users Mailing List' Subject: RE: Simple html:submit question Ya, u can do that or u can use

Re: Simple html:submit question

2003-08-14 Thread Mark Lowe
PROTECTED] Sent: Tuesday, August 12, 2003 10:43 AM To: 'Struts Users Mailing List' Subject: RE: Simple html:submit question Ya, u can do that or u can use a html:link tag(generates a href in html) like below. You ultimately submit the form in the javascript fn of href. html:link href

RE: Simple html:submit question

2003-08-14 Thread Ravi Kora
) -Original Message- From: Norr, Peter [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 10:22 AM To: 'Struts Users Mailing List'; '[EMAIL PROTECTED]' Subject: RE: Simple html:submit question Should I use an onclick method handler to the image tag so I can submit the form

RE: Simple html:submit question

2003-08-12 Thread Norr, Peter
Any reason why the struts html:submit/ tag does not support the src attribute? html:submit src=myimage.gif/ -Original Message- From: Ravi Kora [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 10:43 AM To: 'Struts Users Mailing List' Subject: RE: Simple html:submit question Ya

Simple html:submit question

2003-08-11 Thread Norr, Peter
How do I use my own image in a html:submit/ or html:cancel/ tag? -- This message is intended only for the personal and confidential use of the designated recipient(s) named above. If you are not the intended recipient of

html:submit question

2002-12-03 Thread Kevin HaleBoyes
I have a couple of html:submit elements on one html:form. How do I distinguish between the different buttons? Specifically, I have html:submit property=operationEdit Loan/html:submit html:submit property=operationReject Loan/html:submit The form bean has a setOpereration(String) setter method

Re: html:submit question

2002-12-03 Thread Gemes Tibor
2002. december 3. 16:30 dátummal Kevin HaleBoyes ezt írtad: The way it works now, I have to compare the value of the operation property of the form bean against the string that is displayed to the user. That seems a bit fragile - suppose the customer wants the Reject Loan to be Cancel Loan

Re: html:submit question

2002-12-03 Thread Kevin HaleBoyes
--- Gemes Tibor [EMAIL PROTECTED] wrote: 2002. december 3. 16:30 dátummal Kevin HaleBoyes ezt írtad: The way it works now, I have to compare the value of the operation property of the form bean against the string that is displayed to the user. That seems a bit fragile - suppose the