using internationalization on list data
Posted
by
singh
on Stack Overflow
See other posts from Stack Overflow
or by singh
Published on 2010-10-18T06:49:09Z
Indexed on
2010/12/22
8:54 UTC
Read the original article
Hit count: 302
i am using Struts2 in application.
<s:iterator value="listObject">
<s:component template="abc.vm">
<s:param name="text" value="listValue" />
<s:param name="prefix" value="listIndex" />
</s:component>
</s:iterator>
listValue is a values of list. i am using iterator to traverse the list. now on listValue, i want to put here internationalization concept.so that all the list value can be display based on Locale which store in a list. please suggest!
© Stack Overflow or respective owner