[ 
https://issues.apache.org/jira/browse/WW-4896?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16262122#comment-16262122
 ] 

Fechner commented on WW-4896:
-----------------------------

Dear Lukasz,

thank you for your help!

"https://developers.google.com/maps/documentation/javascript/localization#Language";
 do not helps. But I solved this problem between google maps output and 
inserting into the struts-form.

Best regard
Siegfried

Ps.:
What is the best way to set/switch  the Locale global for a struts application?




> Bug after Struts 2.5.10.1: Using Float values in Form
> -----------------------------------------------------
>
>                 Key: WW-4896
>                 URL: https://issues.apache.org/jira/browse/WW-4896
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Core, Core Actions
>    Affects Versions: 2.5.12
>            Reporter: Fechner
>             Fix For: 2.5.x
>
>         Attachments: float.png
>
>
> *Situation:*
> *Webfrontend form:*
> {code:html}
>       <s:textfield key="pvFormular.ost" id="ost" 
> label="%{getText('produkt.ost')}" value="%{#session.prodWerteObjekt.ost}" 
>               requiredLabel="true" cssClass="input_text_4" 
> onchange="changedTab2()" tooltip="%{getText('produkt.ag.tooltip.koordinate')}"
>       tooltipIconPath="/images/question.gif"/>
> {code}
> Input into the form: 10.0
> *Incoming Value in Action:*
> {code:java}
>       private ProdVarianteWerte pvFormular =new ProdVarianteWerte();
>   ...
>   log.info("=====ost="+pvFormular.getOst());  
> {code}
> *Output in Logfile:*
> {noformat}
> [INFO ] 2017-11-21 14:28:47.133 [http-nio-8080-exec-416] 
> [speichernaendtab2datei]  ProduktAGAction,Zeile:511  - =====ost=100.0
> {noformat}
> *Structure of Bean "ProdVarianteWerte":*
> {code:java}
> package de.dwd.katalog.beans;
> import ...
> public class ProdVarianteWerte {
> ....
>               private float ost;
> ..
>               public float getOst() {
>                       return ost;
>               }
>               public void setOst(float ost) {
>                       this.ost = ost;
>               }
> ...
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to