Re: i18n recommendation

2005-09-15 Thread Ivan Rodriguez
What I use: First I store the ArrayList in the application context, with the locale identifies concatenated. And other useful localized strings that are constants. context.setAttribute(lang + "_" + Constants.YEAR_MONTHS, ym); And in the action where there is a forward that will display that

Re: Struts and DisplayTag CSS?

2005-09-15 Thread Ivan Rodriguez
OOps, i didn t checked the welcome-file directive. I didn t found a situation where you want to access your forward jsp directly. :-[ Holshausen, Ron escribió: Hi, You're using an relative path to your css file (css/screen.css), so the user page with path /user/... does it find it as it expe

Re: Struts and DisplayTag CSS?

2005-09-15 Thread Ivan Rodriguez
You have distinct code in both url's. It is imposible that one work and the other doesnt work if you have the *same* displaytag configuration and css and other needed files declared in both jsp. Because they are at same url level ( /erp/ ) 梁炳場 escribió: For this link, http://localhost:8080/

Re: Some i18n issues

2005-09-15 Thread Ivan Rodriguez
I think the *cleanest* way is to format data at presentation layer (jsp). Last example from Laurie is quite correct and clean, if it is too long code let get a try with JSTL and Struts-EL taglibs () Michael Ewers escribió: Hi, To avoid misunderstandings: My goal is to have a DynaActionForm

Re: JavascriptValidatorTag.doStartTag(JavascriptValidatorTag.java:309) ( URGENT !! )

2005-09-15 Thread Ivan Rodriguez
application works fine in local app server (oracle 10g ias). Ivan, we dont use tomcat server for development. We use same server oracle 10g ias. Also this app works fine in my OC4J of JDeveloper 10g . In where automatic string-number castin Any suggestion? Erol Ivan Rodriguez <[EM

Re: Some i18n issues

2005-09-14 Thread Ivan Rodriguez
"> Michael Ewers escribió: The problem is that the tag doesn't have a formatKey-attribute and I want the initial value to be displayed in a text-field, not as a pure html-output. In other words: I need struts to make a "" out of a "...initial="1000" with German locale set in browser. Thans,

Re: JavascriptValidatorTag.doStartTag(JavascriptValidatorTag.java:309) ( URGENT !! )

2005-09-14 Thread Ivan Rodriguez
Martin, Oracle ADF Runtime needs to be installed...but if it is used ;) I think Erol is not using ADF. Erol, keep in mind that tomcat and IAS are *different*. I saw a similar error with tomcat doing automatic string-number cast, and IAS not. Martin Gainty escribió: Be mindful that Oracle AD

Re: Some i18n issues

2005-09-14 Thread Ivan Rodriguez
You have to use an initial value of "1000". Then where you print this initial value, at your jsp, use formatting options: formatKey="format.number" /> format.number is an entry in you MessageResources.properties For german MessageResources_de.properties: format.number=#0.

Re: AW: Problem with characters

2005-09-07 Thread Ivan Rodriguez
I think you are right. I use too a filter from springframework to force UTF-8 encoding: encodingFilter org.springframework.web.filter.CharacterEncodingFilter encoding UTF-8 forceEncoding true And th

Re: Problem with characters

2005-09-07 Thread Ivan Rodriguez
Check your production default table charset. It must be latin1 or similar. lk escribió: Hi, I have a problem with some characters. My application reads some forms and writes them in a db. On my test and developing environment everything works well. The problem comes out when I deploy the ap

Re: CSS not working with JSF

2005-08-26 Thread Ivan Rodriguez
[EMAIL PROTECTED] escribió: Rick, classes seem to work. Thank You. But the requirement is to use ID. May be I can convince my team. I will go try Geeta's idea now to see how fun that is...:=) Keep in mind that ID must be unique in the same HTML page. You can`t write for example, 2 link

Re: Struts 1.2 v 1.3

2005-07-14 Thread Ivan Rodriguez
Maven is for building projects, like Ant does. Access Denied escribió: I've seen Maven listed amongst the Apache projects and read a little. Is it supposed to replace CVS and SVN? Is this something we should be using routinely? tia, buddy ---

Re: and Struts 1.2.7 possible bug?

2005-07-08 Thread Ivan Rodriguez
I have the same situation that yours. My solution is to save the static part of validator in an static .js file ...and replace all ocurrences of var formName = form.getAttributeNode("name"); with var formName = form.getAttributeNode("id"); My previous setup was "> Inside validator.

Re: swith to struts-el

2005-07-04 Thread Ivan Rodriguez
So if it doesnt work for you, try - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: swith to struts-el

2005-07-04 Thread Ivan Rodriguez
Dewitte Rémi escribió: I'd like to switch all my callic struts tags to struts-el in order to not mix all tags. How do you switch logic.equal to c:if ? For example : Thanks again... - To unsubscribe, e-mail: [EMAIL PROTECTE