You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Mike Jennings (JIRA)" <ji...@apache.org> on 2007/05/03 02:54:42 UTC

[jira] Created: (WW-1907) radiomap.ftl does not reconize OGNL value returned from a object.

radiomap.ftl does not reconize OGNL value returned from a object.
-----------------------------------------------------------------

                 Key: WW-1907
                 URL: https://issues.apache.org/struts/browse/WW-1907
             Project: Struts 2
          Issue Type: Bug
          Components: Views
    Affects Versions: 2.0.6
         Environment: Windows XP, Jdeveloper 10g, OC4j
            Reporter: Mike Jennings


When I populate the value field in a <s:radio /> with a ognl value from the stack it is not recognized and the default value is not selected.  The only way that I can make it work with the current template is to use a ognl value of %{'M'} to default the value I want to match to a string.

To fix this I modified the radiomap.ftl code and changed the following check from:

<#if tag.contains(parameters.nameValue, itemKey)>
 checked="checked"<#rt/>
</#if>

To:

<#if tag.contains(parameters.nameValue, itemKeyStr)>
 checked="checked"<#rt/>
</#if>

and now the value field is recognized properly.  The comparison that I changed it to was from the webwork2.4 radiomap.ftl


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (WW-1907) radiomap.ftl does not reconize OGNL value returned from a object.

Posted by "rusu stefan (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/WW-1907?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=44492#action_44492 ] 

rusu stefan commented on WW-1907:
---------------------------------

Hi Don,

I'm able to reproduce this with struts2-core-2.0.11.2.jar

The code in radiomap.ftl looks like this in version 2.0.11.2:
<#if tag.contains(parameters.nameValue?default(''), itemKeyStr)>
 checked="checked"<#rt/>
</#if>

if I change it to the above it works

> radiomap.ftl does not reconize OGNL value returned from a object.
> -----------------------------------------------------------------
>
>                 Key: WW-1907
>                 URL: https://issues.apache.org/struts/browse/WW-1907
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Plugin - Tags
>    Affects Versions: 2.0.6
>         Environment: Windows XP, Jdeveloper 10g, OC4j
>            Reporter: Mike Jennings
>            Assignee: Don Brown
>             Fix For: 2.0.8
>
>
> When I populate the value field in a <s:radio /> with a ognl value from the stack it is not recognized and the default value is not selected.  The only way that I can make it work with the current template is to use a ognl value of %{'M'} to default the value I want to match to a string.
> To fix this I modified the radiomap.ftl code and changed the following check from:
> <#if tag.contains(parameters.nameValue, itemKey)>
>  checked="checked"<#rt/>
> </#if>
> To:
> <#if tag.contains(parameters.nameValue, itemKeyStr)>
>  checked="checked"<#rt/>
> </#if>
> and now the value field is recognized properly.  The comparison that I changed it to was from the webwork2.4 radiomap.ftl

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (WW-1907) radiomap.ftl does not reconize OGNL value returned from a object.

Posted by "Don Brown (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/struts/browse/WW-1907?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Don Brown resolved WW-1907.
---------------------------

       Resolution: Fixed
    Fix Version/s: 2.0.8
         Assignee: Don Brown

Fixed, thanks for the solution.

> radiomap.ftl does not reconize OGNL value returned from a object.
> -----------------------------------------------------------------
>
>                 Key: WW-1907
>                 URL: https://issues.apache.org/struts/browse/WW-1907
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Views
>    Affects Versions: 2.0.6
>         Environment: Windows XP, Jdeveloper 10g, OC4j
>            Reporter: Mike Jennings
>         Assigned To: Don Brown
>             Fix For: 2.0.8
>
>
> When I populate the value field in a <s:radio /> with a ognl value from the stack it is not recognized and the default value is not selected.  The only way that I can make it work with the current template is to use a ognl value of %{'M'} to default the value I want to match to a string.
> To fix this I modified the radiomap.ftl code and changed the following check from:
> <#if tag.contains(parameters.nameValue, itemKey)>
>  checked="checked"<#rt/>
> </#if>
> To:
> <#if tag.contains(parameters.nameValue, itemKeyStr)>
>  checked="checked"<#rt/>
> </#if>
> and now the value field is recognized properly.  The comparison that I changed it to was from the webwork2.4 radiomap.ftl

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.