Re: Wanted best practice for i18n'd optionsCollection

2003-03-12 Thread Christopher Cheng
- Original Message - From: Rick Reumann [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, March 07, 2003 2:57 AM Subject: Re: Wanted best practice for i18n'd optionsCollection On Fri, 7 Mar 2003 02:44:12 +0800 Christopher Cheng [EMAIL PROTECTED] wrote

Re: Wanted best practice for i18n'd optionsCollection

2003-03-06 Thread Christopher Cheng
Please comment - Original Message - From: Thomas Gourgon [EMAIL PROTECTED] To: Christopher Cheng [EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 10:03 PM Subject: Re: Wanted best practice for i18n'd optionsCollection Hi Christopher, I would be interested in taking a look at this code

Re: CSS stylesheet

2003-03-06 Thread Christopher Cheng
There is an extension to Struts to generate CSS link, have a look at the resouces page - Original Message - From: Renato Romano [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Friday, March 07, 2003 12:39 AM Subject: RE: CSS stylesheet Thanks a lot !!

Re: Wanted best practice for i18n'd optionsCollection

2003-03-03 Thread Christopher Cheng
I posted a similar question long time ago in this list. - Nobody cares. So I developed my own custom tag to do it. What I did is populating the collection with locale keys in the label of the LabelValueBean and then get the exact message from the property file. If you want it, I can send you a

Referencing an application level image

2003-02-28 Thread Christopher Cheng
How can I reference an image located in the application's root image folder with html:img in a mutiple module environment? For example if I use html:img page=/images/picture.gif it will generate /myapp/mymodule/images/picture.gif If I would like to reference /myapp/images/picture.gif instead,

Re: Referencing an application level image

2003-02-28 Thread Christopher Cheng
] To: Struts Users Mailing List [EMAIL PROTECTED]; Christopher Cheng [EMAIL PROTECTED] Sent: Saturday, March 01, 2003 12:28 AM Subject: Re: Referencing an application level image Think about make a symbol link of every /myapp/mymodule1/sharedimages/, /myapp/mymodule2/sharedimages/ to /myapp/images

How do I split struts-config.xml without using subapps

2002-11-12 Thread Christopher Cheng
My struts-config.xml is getting very long. Is it possible to split that into multiple files without using subapps?

Re: How do I split struts-config.xml without using subapps

2002-11-12 Thread Christopher Cheng
do I split struts-config.xml without using subapps I don't believe so. One approach that might help is to use the Struts Console application, which lets you get the big picture without having to see the entire file at once. -Original Message- From: Christopher Cheng [mailto:mailing-list

Re: How do I split struts-config.xml without using subapps

2002-11-12 Thread Christopher Cheng
:-) Christopher Cheng wrote: My struts-config.xml is getting very long. Is it possible to split that into multiple files without using subapps? -- Eddie Bush -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:struts-user

Re: How do I split struts-config.xml without using subapps

2002-11-12 Thread Christopher Cheng
Thanks, let me try it out. - Original Message - From: Derek Lin [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED]; Christopher Cheng [EMAIL PROTECTED] Sent: Wednesday, November 13, 2002 3:35 AM Subject: Re: How do I split struts-config.xml without using subapps I am

the nightly build problem

2002-02-20 Thread Christopher Cheng
I got the nightly build from Apache. Using the new iterate tag with indexed, I am able to put the form values on the page with get, but set doesn't seem to work with second level form beans logic:iterate name=form1 property=object1.object2 html:text name=object2 property=property1 indexed=true

RE: Why no indexed attribute defined in struts-html.tld?

2002-02-18 Thread Christopher Cheng
Just download from the nightly build http://jakarta.apache.org/builds/jakarta-struts/nightly/ But the debug message are missing, instead Starting service Tomcat-Standalone Apache Tomcat/4.0.1 [INFO] sax - -startDocument() [INFO] sax - -endDocument() [INFO] sax - -startDocument() [INFO] sax -

internationalization

2002-02-11 Thread Christopher Cheng
I am struggling with double byte characters with the JSP On the struts jsp form, I am putting %@ page contentType=text/html; charset=UTF-8 % on the top META http-equiv=Content-Type content=text/html; charset=UTF-8 in the head I got some question marks when I print the characters in the

RE: speed of struts

2002-02-07 Thread Christopher Cheng
. A few mailing list posts pointed me to a bug in Sun's 1.3 having to do with nested try/catch blocks in the compiled JSP. Try your page under Sun 1.2 or the IBM JDK and see if it makes a difference. Lee -Original Message- From: Christopher Cheng [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: speed of struts

2002-02-06 Thread Christopher Cheng
My form does not have a lot of tag processing (acutally none) The time it takes to load the page is proportional to the number of instances of form objects appeared on the JSP. For instance, outputting a radio set is A LOT slower than outputting a drop down list since you just have to pass a

Putting parameters in ActionForward

2002-01-25 Thread Christopher Cheng
Can I put parameters in the ActionForward object returned from the ActionClass? Instead of just forwarding the control to another Action with dosomething.do, it would be like dosomething.do?parm1=1parm2=2 request.setParameter and mapping.setParameter doesn't seem to work... -- To

Putting parameters in ActionForward

2002-01-25 Thread Christopher Cheng
Can I put parameters in the ActionForward object returned from the ActionClass? Instead of just forwarding the control to another Action with dosomething.do, it would be like dosomething.do?parm1=1parm2=2 request.setParameter and mapping.setParameter doesn't seem to work... -- To