On Oct 1, 11:20 am, compaqr4...@lycos.com wrote:
> > On Oct 1, 9:51 am, compaqr4...@lycos.com wrote:
>
[quoted text clipped - 35 lines]
>
> Kay
Once you are comfortable with basic JSP syntax, try to learn about
avoiding scriptlets. There are alternatives like EL and tag libraries
that are way easier to use, read and code. Anyway, here is what you
can do for now:
<fmt:formatNumber value="<%= however you get this value, using plain
java %>" pattern="#,###,###"/>
In your case I am guessing it'd be something like <fmt:formatNumber
value="<%=infoValue(pop).value%>" pattern="#,###,###"/>
-cheers,
Manish
Lew - 01 Oct 2007 21:22 GMT
compaqr4...@lycos.com wrote:
>> but how can I change the example you displayed
>> <fmt:formatNumber value="12345678" pattern="#,###,###"/>
[quoted text clipped - 3 lines]
>>
>> Thanks for your patience, I'm not very strong in jsp.
> Once you are comfortable with basic JSP syntax, try to learn about
> avoiding scriptlets. There are alternatives like EL and tag libraries
[quoted text clipped - 6 lines]
> In your case I am guessing it'd be something like
> <fmt:formatNumber value="<%=infoValue(pop).value%>" pattern="#,###,###"/>
You might need a scriptlet output expression with the accessor method
explicity invoked, similar to:
<fmt:formatNumber
value="<%= infoValue(pop).getValue() %>"
pattern="#,###,###"
/>
The Struts <bean:write> tag "property" attribute contains
> the name of the property to be accessed on the bean specified by name.
> This value may be a simple, indexed, or nested property reference expression.
<http://struts.apache.org/1.3.8/struts-taglib/tlddoc/bean/write.html>
I'm not accustomed to such complicated expressions in the property attribute.
What is the corresponding element of the infoForm object? What is the
property of it that you mean to invoke?

Signature
Lew
compaqr4000@lycos.com - 02 Oct 2007 17:08 GMT
Thanks for your help and suggestions Manish and Lew. Before I go any
further I think that I need to delve a little further into what's
happening in the code, so that I can understand it better. This is
something that someone else developed and I inherited. I thought that
a quick fix might be available, but I don't understand enough yet even
to use your suggestions. Once I have a better grasp I'll post another
question!
Thanks!
Kay
> compaqr4...@lycos.com wrote:
> >> but how can I change the example you displayed
[quoted text clipped - 34 lines]
> --
> Lew
Lew - 02 Oct 2007 22:41 GMT
Please don't top-post.
Lew wrote:
>> I'm not accustomed to such complicated expressions in
>> the property attribute.
>> What is the corresponding element of the infoForm object?
>> What is the property of it that you mean to invoke?
> Thanks for your help and suggestions Manish and Lew. Before I go any
> further I think that I need to delve a little further into what's
[quoted text clipped - 3 lines]
> to use your suggestions. Once I have a better grasp I'll post another
> question!
In the meantime, give some thought to answering the questions people have
asked you.

Signature
Lew