Re: basics of struts

2005-09-05 Thread netsql
The link is an example of it runing (as is 1Up, and a few other clients. Cool thing about WHO is that it's set up.exe that install's struts, tomcat, db, etc. and runs). In order to get the book, you have to read the insrutctions about attachment at botom of page. .V James Mitchell wrote: S

Re: basics of struts

2005-09-05 Thread James Mitchell
Someone should recheck the link from the wiki page, it points to "World Health Organization (WHO) HIV/AIDS Toolkits on the Web and CD-ROM", which I doubt was the intended target. Thanks. -- James Mitchell Software Engineer / Open Source Evangelist Consulting / Mentoring / Freelance EdgeTech,

RE: basics of struts

2005-09-05 Thread Ankit Pancholi
Hey guys It worked with the String argument. Its passing the "value" property of the checkbox to the setter fn. Thanks a lot. -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Monday, September 05, 2005 7:20 PM To: Struts Users Mailing List Subject: Re:

Re: basics of struts

2005-09-05 Thread Frank W. Zammetti
What do you mean by "argument type" exactly? An argument is part of a method signature, so are you referring to the setter/getter in an ActionForm? Or, as I suspect, you really mean the data type of the fields in your ActionForm (which of course *would* affect the argument type of the getter/

RE: basics of struts

2005-09-05 Thread Bob Arnott
Ankit Pancholi wrote: > Hey thanks a lot. Changing classpath to servlet.jar helped. Can you > tell me the argument type for check box. I tried Boolean considering > it as on or off but it didn't work. Try "boolean", not "Boolean"... -- Bob Arnott --

Re: basics of struts

2005-09-05 Thread Wendy Smoak
From: "Ankit Pancholi" <[EMAIL PROTECTED]> Can you tell me the argument type for check box. I tried Boolean considering it as on or off but it didn't work. We're not going to be able to help without more information. When you say it didn't work... what happened? What does the Form bean look

RE: basics of struts

2005-09-05 Thread Ankit Pancholi
onday, September 05, 2005 6:50 PM To: Struts Users Mailing List Subject: Re: basics of struts From: "Ankit Pancholi" <[EMAIL PROTECTED]> > I am a very new user of struts. Making my first pgm and wanted to know > what will be the argument type in the setter function for a checkbox, >

Re: basics of struts

2005-09-05 Thread Wendy Smoak
From: "Ankit Pancholi" <[EMAIL PROTECTED]> I am a very new user of struts. Making my first pgm and wanted to know what will be the argument type in the setter function for a checkbox, listbox, combo button. I use Boolean for checkbox, (String will also work,) String[] for (I assume) a select

Re: basics of struts

2005-09-05 Thread netsql
There is a 30 hour tutorial on struts wiki: http://wiki.apache.org/struts (search book) I wonder if that would help you. (it's meant for instructors ... but maybe you try it). Ankit Pancholi wrote: Hi guys I am a very new user of struts. Making my first pgm and wanted to know what will be t