RE: few questions from new struts user

2003-06-18 Thread Philip McILvenna
[mailto:[EMAIL PROTECTED] Sent: June 17, 2003 9:25 AM To: Struts Users Mailing List Subject: RE: few questions from new struts user Hallo Philipp, I tried your Strutinizer, such a tool would be of enormous help. Unfortunately I cant process any HTML-files. I am using JDK1.4.1. Peter

few questions from new struts user

2003-06-17 Thread Adwait B
Hi All, I've few things to ask that i couldnt find in archive.. 1.I'm in design phase of a project that is supposed to use struts.We will be recieving plain HTML forms(GUI) from our frontend designer and then we'll be converting that in struts jsp(jsp with struts tags) During demo we found

RE: few questions from new struts user

2003-06-17 Thread Mike Jasnowski
] Sent: Tuesday, June 17, 2003 9:06 AM To: Struts Users Mailing List Subject: few questions from new struts user Hi All, I've few things to ask that i couldnt find in archive.. 1.I'm in design phase of a project that is supposed to use struts.We will be recieving plain HTML forms(GUI) from our

RE: few questions from new struts user

2003-06-17 Thread Brandon Goodin
: few questions from new struts user Well, one possibility (although I'm not sure how feasible) would be to run the JSP's through an XSLT stylesheet. Although the pages need to have well-formed tags. I'm not sure you can entirely automate this type of process. -Original Message- From

Re: few questions from new struts user

2003-06-17 Thread salgado . pc
] Cc:(bcc: Pedroemanuel Salgado-PC/PGI) Subject: few questions from new struts user 17-06-2003 14:05 Please respond to Struts Users

RE: few questions from new struts user

2003-06-17 Thread Andrew Hill
1.) I vaguely recall seeing somewhere that Camino does this? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, 17 June 2003 21:31 To: Struts Users Mailing List; Adwait B Subject: Re: few questions from new struts user About... 1. Replacing html tags

Re: few questions from new struts user

2003-06-17 Thread Adam Hardy
my 2 cents worth is that the best way for a front-end designer to work with programmers was not to share the code at all. In my experience, webpage designers know nothing about programming, sometimes not even HTML, but they're great at putting creative graphic ideas together. What I would do -

RE: few questions from new struts user

2003-06-17 Thread Philip McILvenna
://www.mcilvenna.net/ Strutinizer link. Philip McILvenna Struts developer Vancouver, Canada. -Original Message- From: Adwait B [mailto:[EMAIL PROTECTED] Sent: June 17, 2003 6:06 AM To: Struts Users Mailing List Subject: few questions from new struts user Hi All, I've few things to ask that i

RE: few questions from new struts user

2003-06-17 Thread Peter Eichenauer
- From: Adwait B [mailto:[EMAIL PROTECTED] Sent: June 17, 2003 6:06 AM To: Struts Users Mailing List Subject: few questions from new struts user Hi All, I've few things to ask that i couldnt find in archive.. 1.I'm in design phase of a project that is supposed to use struts.We will be recieving

New Struts User - Pick list help

2002-02-27 Thread Honman Lee
Can anyone help me with what I am doing wrong? The following is part of a form where I am trying to get a dynamic picklist generated: % java.util.ArrayList list = new java.util.ArrayList(); list.add("First"); list.add("Second"); list.add("Third"); list.add("Fourth"); list.add("Fifth");

RE: New Struts User - Pick list help

2002-02-27 Thread Galbreath, Mark
Yeah, change your font. Mark -Original Message- From: Honman Lee [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 27, 2002 1:59 PM Can anyone help me with what I am doing wrong? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

RE: New Struts User - Pick list help

2002-02-27 Thread Honman Lee
I am not sure I understand what you mean by "change your font". -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 27, 2002 11:11 AM To: 'Struts Users Mailing List' Subject: RE: New Struts User - Pick list help Yeah, change your f

RE: New Struts User - Pick list help

2002-02-27 Thread Honman Lee
nt: Wednesday, February 27, 2002 1:14 PM To: 'Struts Users Mailing List' Subject: RE: New Struts User - Pick list help You are posting in MS PGothic 10-point font and it is difficult to read (and anyone having HTML turned on will reply in the same font). Change to Arial, Helvetica, or other stan

RE: New Struts User - Pick list help

2002-02-27 Thread Jakkampudi, ChandraseKhar
, February 27, 2002 3:20 PM To: Struts Users Mailing List Subject: RE: New Struts User - Pick list help Thanks Mark...Hopefully people can read this. Can anyone help me with what I am doing wrong? The following is part of a form where I am trying to get a dynamic picklist generated: % java.util

RE: New Struts User - Pick list help

2002-02-27 Thread Honman Lee
something? Could anyone point it out please? Thanks. -Original Message- From: Jakkampudi, ChandraseKhar [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 27, 2002 1:25 PM To: 'Struts Users Mailing List' Subject: RE: New Struts User - Pick list help Try form:options name="list&q

RE: New Struts User - Pick list help

2002-02-27 Thread Kanoza, Douglas (NCI)
[mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 27, 2002 4:39 PM To: Struts Users Mailing List Subject: RE: New Struts User - Pick list help Thanks JC. I tried it but it doesn't seem to work. I am assuming I am using options because it is a dynamic list that needs to be pushed

RE: New Struts User - Pick list help

2002-02-27 Thread Jakkampudi, ChandraseKhar
--Original Message- From: Honman Lee [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 27, 2002 3:39 PM To: Struts Users Mailing List Subject: RE: New Struts User - Pick list help Thanks JC. I tried it but it doesn't seem to work. I am assuming I am using options because it is a dynamic

RE: New Struts User - Pick list help

2002-02-27 Thread Honman Lee
Java and struts. Thanks. -Original Message- From: Jakkampudi, ChandraseKhar [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 27, 2002 1:45 PM To: 'Struts Users Mailing List' Subject: RE: New Struts User - Pick list help This is code that I use and it works. See if it fits your

RE: New Struts User - Pick list help

2002-02-27 Thread Andre Beskrowni
and the answer is... (1) you're using the wrong taglib. form has been deprecated. use html instead. (2) assuming you have a list called list that contains Java Bean objects with attributes name and id, you'd display it as a list of options as follows: html:options collection=list

Help - new struts user questions

2001-12-19 Thread Tony Ziolkowski
I am planning to use struts in a Jetty environment and am just starting to play with jetty. There's some things I don't understand. The installation documentation refers to my 'web application'. Is that the jetty application? If it is, the installation guide refers to copying files into the web

RE: Help - new struts user questions

2001-12-19 Thread Jon.Ridgway
. -Original Message- From: Tony Ziolkowski [mailto:[EMAIL PROTECTED]] Sent: 19 December 2001 08:13 To: [EMAIL PROTECTED] Subject: Help - new struts user questions I am planning to use struts in a Jetty environment and am just starting to play with jetty. There's some things I don't understand

New Struts User

2001-09-26 Thread Ken . Swanson
Hi, I am trying to use Struts and have not been able to make it work in my environment. I am running Visual Age for Java 3.5.3 (JSP 1.1 Servlet 2.2). I followed the instructions for setup and have double checked them. I am getting the following error in my browser when I invoke a jsp. I was

RE: New struts user - status Qs

2000-11-10 Thread Shamdasani Nimmi-ANS004
http://www.mail-archive.com/struts-user%40jakarta.apache.org/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, November 10, 2000 11:47 AM To: [EMAIL PROTECTED] Subject: New struts user - status Qs I just got a small system running using sturts