RE: Loading data for

2002-01-15 Thread Larry Maturo
tell. -- Larry Maturo [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Mark Woon Sent: Monday, January 14, 2002 9:13 PM To: Struts Users Mailing List Subject: Loading data for Hi all... What's the standard way of loading

RE: select/options/option

2002-01-14 Thread Larry Maturo
the HTML taglib. Thanks, Jason Larry Maturo wrote: > Since I see these questions come up, and I just got them > figured out, I thought I would share them with the mailing > list. > > Select can be used with: > > a: A collection of strings, such as an arraylist > b: A collec

select/options/option

2002-01-10 Thread Larry Maturo
Value of the selected bean. With HardCoded Values - name of field in form bean to set is selectedValue. -- Larry Maturo [EMAIL PROTECTED] Athens Group, Inc. winmail.dat Description: application/ms-tnef -- To unsubscribe, e

RE: Advice needed on Stuts versus Struts/Expresso

2002-01-09 Thread Larry Maturo
is trying to make money by supporting it? This implies that the people most knowledgeable about Expresso has an incentive not to support the mailing list. Or am I just being paranoid? Note that I have not used Expresso, or seen their mailing list. -- Larry Maturo [EMAIL PROTECTED

RE: Error upgrading to latest struts build

2001-09-11 Thread Larry Maturo
h struts-template.tld. I did a clean all. I did a build all. Any help would be appreciated. -- Larry Maturo

RE: Error upgrading to latest struts build

2001-09-10 Thread Larry Maturo
edited by web.xml file to replace struts-session.tld with struts-template.tld. I did a clean all. I did a build all. Any help would be appreciated. -- Larry Maturo

Error upgrading to latest struts build

2001-09-07 Thread Larry Maturo
edited by web.xml file to replace struts-session.tld with struts-template.tld. I did a clean all. I did a build all. Any help would be appreciated. -- Larry Maturo

RE: referring to a formBean property in a scriptlet

2001-08-24 Thread Larry Maturo
Struts has logic tags so you don't need to use your scriptlet at all for this. See the tag documentation for this. -- Larry Maturo -Original Message- From: Esbrook, Scott [mailto:[EMAIL PROTECTED]] Sent: Friday, August 24, 2001 9:58 AM To: [EMAIL PROTECTED] Subject: referring

RE: Reuse of JSPs

2001-08-20 Thread Larry Maturo
You can add a parameter to the global-forwards, and then check for it. For example: and then use, in the action class: if(request.getParameter("where").equals("select")) { // something; } else if(request.getParaneter("where".equals("

Back Button in Struts

2001-08-20 Thread Larry Maturo
How do you implement a generic back button in struts such that it hits the Action Class? When you use something like: Back You go back to the jsp, but miss the Action Class, which is often a bad thing. -- Larry Maturo

RE: changing the Action

2001-08-16 Thread Larry Maturo
if you want to forward to another action class you forward to a .do. Hope this helps. -- Larry Maturo -Original Message- From: Rodrigo Zerlotti [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 16, 2001 12:23 PM To: [EMAIL PROTECTED] Subject: changing the Action Importance: High can

RE: problem with submit

2001-08-15 Thread Larry Maturo
Hi Rama,    Thank you very much.  That was the problem all right.  Agh! I bet I compared that submit with a working one ten times and still missed the closing slash.   Thanks again.   -- Larry Maturo   -Original Message-From: Rama Krishna [mailto:[EMAIL PROTECTED]]Sent

problem with submit

2001-08-15 Thread Larry Maturo
the action class not getting called? -- Larry Maturo

RE: action mapping not working

2001-08-15 Thread Larry Maturo
action, and the forward for the ReviewInstructions action is then a jsp page. Cheers, Dave "Larry Maturo" <[EMAIL PROTECTED]> on 08/15/2001 01:02:57 PM Please respond to [EMAIL PROTECTED] To: "David_Hay/Lex/Lexmark.LEXMARK"@sweeper.lex.lexmark.com, [EMAIL PROT

RE: passing a parameter

2001-08-15 Thread Larry Maturo
Hi Mike: I believe this example does what you want: bean:write name="review" property="reviewSubject" filter="true"/> id, in the iterate tag, creates a local variable, so to speak, that represents an item in the reviews

RE: action mapping not working

2001-08-15 Thread Larry Maturo
Hi Dave You wrote" If you want the action to be called, you should forward to the action, not the jsp eg Below is my new mapping: I don't understand why it works, but it does. Thank you. Any idea why sucess works even t

RE: action mapping not working

2001-08-15 Thread Larry Maturo
the same, Struts should handle them the same, and I should get the same results, yet only the success one works.  What am I doing wrong?   -- Larry Maturo   -Original Message-From: Matt Raible [mailto:[EMAIL PROTECTED]]Sent: Wednesday, August 15, 2001 10:42 AMTo: [EMAIL PROTECT

RE: onclick handler in the context of a struts iterate tag

2001-08-14 Thread Larry Maturo
or p2, in your p3 action, set the value in p2's form and save it in either request or session scope before you forward to it. That way struts will find it and use it, instead of creating a new one, and you have access to your value in p2's action. cheers, Dave "Larry Maturo&quo

RE: onclick handler in the context of a struts iterate tag

2001-08-14 Thread Larry Maturo
make it easier to do what you're trying to do... Cheers, Dave "Larry Maturo" <[EMAIL PROTECTED]> on 08/14/2001 05:27:19 PM Please respond to [EMAIL PROTECTED]; Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc:(bcc: David Hay/Lex/Lexmark)

RE: onclick handler in the context of a struts iterate tag

2001-08-14 Thread Larry Maturo
ass - how/where do you do that processing? Cheers, Dave "Larry Maturo" <[EMAIL PROTECTED]> on 08/14/2001 04:45:43 PM Please respond to [EMAIL PROTECTED]; Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc:(bcc: David Hay/Lex/Lexmark) Subject: RE: oncl

RE: onclick handler in the context of a struts iterate tag

2001-08-14 Thread Larry Maturo
ipt, but I apparently don't have access to the session in JavaScript. I have tried using a scriptlet, but apparently the onclick property of the html:link tag does not like scriptlets. Any ideas on how to handle this? -- Larry Maturo Not sure I understand you - could you post some more info? Not

onclick handler in the context of a struts iterate tag

2001-08-14 Thread Larry Maturo
pass it, as a parameter, something made available from the iterate tag. How does one do this? -- Larry Maturo