[Fwd: Re: [Fwd: Help with using formaKey attribute for display dollar values]]

2006-11-28 Thread robin bajaj
-- From: robin bajaj <[EMAIL PROTECTED]> To: Struts Users Mailing List Date: Tue, 28 Nov 2006 16:04:39 -0500 Subject: Help with using formaKey attribute for display dollar values Hi Folks, If I have an int value ( showing number of cents) in session scope that is going to get displaye

Re: [Fwd: Help with using formaKey attribute for display dollar values]

2006-11-28 Thread robin bajaj
]> To: Struts Users Mailing List Date: Tue, 28 Nov 2006 16:04:39 -0500 Subject: Help with using formaKey attribute for display dollar values Hi Folks, If I have an int value ( showing number of cents) in session scope that is going to get displayed on the JSP as dollar value. I am using the following t

Re: [Fwd: Help with using formaKey attribute for display dollar values]

2006-11-28 Thread Hubert Rabago
ov 2006 16:04:39 -0500 Subject: Help with using formaKey attribute for display dollar values Hi Folks, If I have an int value ( showing number of cents) in session scope that is going to get displayed on the JSP as dollar value. I am using the following tag where I have the following key defined

[Fwd: Help with using formaKey attribute for display dollar values]

2006-11-28 Thread robin bajaj
Sorry I forgot to mention, I am actually dividing the 1896 cents by 100 before the jsp page to make the value 18.96 and then display it using the formatkey as $18.00. I would appreciate a formatKey pattern that could convert 1896 straight into $18.96 (without me having to divide it by 100). Th

Help with using formaKey attribute for display dollar values

2006-11-28 Thread robin bajaj
Hi Folks, If I have an int value ( showing number of cents) in session scope that is going to get displayed on the JSP as dollar value. I am using the following tag formatKey="format.msf" scope="session"/> where I have the following key defined in my .properties file format.msf=$#,##0.00 B