Hello
 
My boss wants to have each web page with link of language choose.
 
Now each page have 2 link : french and english.I define link as
<a href="<%= request.getContextPath() %>?locale=en_CA" ><bean:message key="language.english"/><a>
and
<a href="<%= request.getContextPath() %>?locale=fr_CA" ><bean:message key="language.french"/><a>
 
But I have problem with populate form .
For example :
   For modify category page I create Action EditCategoryAction.
This action populate localizable list "parent_category"  from Oracle.And forward to category.jsp .
All ok.
When I click on french or english link message replace new localized messages .But list still old,becouse
editCategoryAction not call again.
 
  Problem:
I want populate localized list from action .But when I click on change language link
Action not called again.
(Of course I can populate localizable list in jsp page .But in this case many logic exist on jsp page)
 
  If anyone have this problem or know other solution help me.
 
 
 
 
 
 
 
 
 
 

Reply via email to