Folks, I read http://struts.apache.org/2.x/docs/text.html and could not make sense on how to display currency format with s:tags
I have an iterator, during the iteration, I would like to set the currency with the correct format. If I use: <s:iterator ...> <s:property value="amount"> </s:iterator> It displays correctly, except that the string is not currency formatted. (Note: Amount is of type double: I know...don't ask :-) I have tried, by the example on the site: <s:iterator ...> <s:text name="currency"> <s:param name="amount" value="amount"></s:text> </s:iterator> and tried also some bizarre syntax to no avail. Thank you for any input. hff