You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Lukasz Lenart (JIRA)" <ji...@apache.org> on 2013/05/20 15:01:17 UTC

[jira] [Resolved] (WW-3676) javatemplates - no radiobutton is selected if property 'name' is not of type integer or string (e.g. short)

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

Lukasz Lenart resolved WW-3676.
-------------------------------

    Resolution: Fixed
      Assignee: Lukasz Lenart

Done, I have changed to toString() without defaultString() method
                
> 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
>            Assignee: Lukasz Lenart
>             Fix For: 2.3.15
>
>
> 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