RE: bean:define for value in properties file

2002-12-02 Thread Andrew B Forman
bean:message key=page.title / http://jakarta.apache.org/struts/api/org/apache/struts/taglib/bean/MessageTa g.html a -Original Message- From: Michael Lee [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 3:52 PM To: Struts Users Mailing List Subject: bean:define for value in

Runtime dynamic form/jsp from XML

2002-11-21 Thread Andrew B Forman
to this? (especially someone who's code i could have =) any suggestions on better design/methedology? much thanks, andrew _\|/_ andrew b forman aim ph0rman _\|/___ generation-d development andrew b forman aim ph0rman v820-2422

RE: Problem with LookupDispatchAction and pressing ENTER in a text

2002-11-21 Thread Andrew B Forman
sounds like you only have one input of type text on your form. believe it or not, this is actually a feature =) http://ppewww.ph.gla.ac.uk/%7Eflavell/www/formquestion.html what you'll want to do is either inhibit the enter press or put a hidden inside the form that duplicates the default method.

RE: Auto-Replies

2002-05-10 Thread Andrew B Forman
Clearly not an African swallow as they are non-migratory. -Original Message- From: Russell Beattie [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 2:20 PM To: Struts Users Mailing List Subject: Re: Auto-Replies What do you mean? An African or European swallow? -Russ

RE: How to not print HTML on last iteration ?

2002-04-26 Thread Andrew B Forman
I usually print the first item by itself, then iterate starting at the second position with the comma prefixed. a -Original Message- From: Witbeck, Shane [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 10:30 AM To: [EMAIL PROTECTED] Subject: RE: How to not print HTML on last

RE: Internationalizing html taglib tag attributes

2002-04-16 Thread Andrew B Forman
html:submit property=whatever bean:message key=login.label / /html:submit -Original Message- From: Dante Briones [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 2:51 PM To: [EMAIL PROTECTED] Subject: Internationalizing html taglib tag attributes My mailer stripped the

RE: more relative path link headaches! (help)

2002-04-16 Thread Andrew B Forman
here is how i do it: link rel=stylesheet charset=ISO-8859-1 type=text/css href=html:rewrite page=/style/something.css / also works well for all your other include-type stuff (javascript, etc.) SCRIPT language=JavaScript src=html:rewrite page=/js/something.js //SCRIPT a -Original

RE: What's a good practice to reuse formBeans with validation

2002-03-08 Thread Andrew B Forman
the way we work around this limitation is to make multiple form defines in the struts-config.xml form-bean name=someAddForm type=something.SomeForm / form-bean name=someEditForm type=something.SomeForm / form-bean name=someDeleteForm type=something.SomeForm / You can use the same form bean -

RE: I18n for number formatting on Struts

2002-03-07 Thread Andrew B Forman
I do not know of any struts-specific i18n functionality that does what you are looking for. However, the baseline Java i18n does: http://java.sun.com/docs/books/tutorial/i18n/ andrew -Original Message- From: Eduardo André Mallmann [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 07,

RE: Development Environment

2002-02-21 Thread Andrew B Forman
Jbuilder 5 (moving to 6 soon) Win2000 TextPad started with struts on VisualAge for Java - hated the Websphere junk - like Jbuilder much better for web work VAJ better for deep-down backend work (data-access beans, etc.) Andrew -Original Message- From: Dave Wellman [mailto:[EMAIL

RE: Multi-language string resource strategy

2002-02-13 Thread Andrew B Forman
H, we're developing with the space-is-cheap and they'll-always-want-something-different mentality. As such, we have very few application-level strings and keep most at a page-scope. This way, when marketing wants one word changed it's a very small change to the resource bundle rather than

RE: Relative URI usage in struts-template:template tags...

2002-02-01 Thread Andrew B Forman
to solve the problem of templates... template:insert page=/jsp/liteHeader.jsp flush=true /template:insert using page will put the context path in for you... then you have the problem with images/css/etc. link rel=stylesheet href=html:rewrite page=/style/local.css / charset=ISO-8859-1

RE: DTD validation

2002-01-24 Thread Andrew B Forman
/param-name param-valuefalse/param-value /init-param /servlet _\|/___ generation-d development andrew b forman -Original Message- From: Witt, Mike (OH35) [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 8:38 AM To: Struts Users Mailing

RE: HREF issue

2002-01-24 Thread Andrew B Forman
?parent=trueaction=Edittype=%= newType %accNum=%= accField.value% target=CreateNew onclick=openWindow(); bean:message key=whatever.the.link.name.is/ /html:link _\|/___ generation-d development andrew b forman -Original Message- From: Sidhartha

RE: session id appearing

2002-01-16 Thread Andrew B Forman
One option would be to create a frameset with a full screen frame as so: HTML HEADTITLEWebApp/TITLE/HEAD FRAMESET FRAME name=main src=/webapp/appEntry.do scrolling=auto frameborder=no /FRAMESET /HTML all the user will see in the address bar is http://server/webapp/appEntry.do and the page

RE: Has anyone seen this issue

2002-01-16 Thread Andrew B Forman
disabled elements are not submitted with the form as per the html spec (below) http://www.w3.org/TR/html4/interact/forms.html#h-17.12 ---begin--- 17.12.1 Disabled controls Attribute definitions disabled [CI] When set for a form control, this boolean attribute disables the control for user

RE: Help using Struts Logic tags.

2002-01-15 Thread Andrew B Forman
. /session:equalsAttribute /session:existsAttribute _\|/___ generation-d development andrew b forman -Original Message- From: VEDRE, RANAPRATAP REDDY [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 15, 2002 9:48 AM To: '[EMAIL PROTECTED]' Subject: Help using Struts Logic

RE: two submit buttons

2002-01-10 Thread Andrew B Forman
Hi Mur, there are two possible diagnosies i see: one: Internet Explorer automatically selects the first submit when the user hits enter (Netscape doesn't). Mostly likely what you would want to do is intercept the enter key. (

DispatchAction Cry for Help

2001-12-18 Thread Andrew B Forman
. Much thanks, Andrew previous post: http://www.mail-archive.com/struts-user@jakarta.apache.org/msg19734.html _\|/___ generation-d development andrew b forman aim: ph0rman -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail

RE: 404 error when placing JSPs beneath WEB-INF

2001-12-18 Thread Andrew B Forman
for putting jsps in WEB-INF and it's been working well so far. the only downside i've seen is that jBuilder5's webapp format isn't open-minded to jsps being under WEB-INF. (if anyone knows a work-around please share! =) _\|/___ generation-d development andrew b forman

Dispatch Action Conundrum

2001-12-17 Thread Andrew B Forman
'wcom.gend.iasa.ipcom.action.EnterpriseDispatchAction' any ideas? Andrew _\|/___ generation-d development andrew b forman aim: ph0rman setup - I've set an entry in my struts-config. For now only the location action is set up: actionpath=/enterpriseDispatch type