[ 
https://issues.apache.org/jira/browse/WW-3676?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lukasz Lenart updated WW-3676:
------------------------------

    Fix Version/s:     (was: 2.3.x)
                   2.3.10
    
> javatemplates - no radiobutton is selected if property 'name' is not of type 
> integer or string (e.g. short)
> -----------------------------------------------------------------------------------------------------------
>
>                 Key: WW-3676
>                 URL: https://issues.apache.org/jira/browse/WW-3676
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Plugin - Java Templates
>    Affects Versions: 2.2.3
>            Reporter: lars geidel
>             Fix For: 2.3.10
>
>
> org.apache.struts2.views.java.simple.RadioHandler:62
> //Namevalue needs to cast to a string from object. It's object because the 
> //Property can be defined as String or as Integer
> {code:java}
> String itemNameValueStr;
> if (nameValue instanceof java.lang.Integer || nameValue instanceof 
> java.lang.String)
>     itemNameValueStr = nameValue.toString();
> else
>     itemNameValueStr = null;
> {code}
> possible sollution?:
> {code:java}
> String itemNameValueStr = StringUtils.defaultString(nameValue == null ? null 
> : nameValue.toString());
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to