You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "sharmila (JIRA)" <ji...@apache.org> on 2016/07/25 15:21:20 UTC

[jira] [Commented] (WW-4666) Values stored in a Set a object is not displayed using

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

sharmila commented on WW-4666:
------------------------------

I was able to fix this issue bycorrecting my set/get method variables with proper notation
ex: 
private List<String> sFYList= new ArrayList<String>(); //Incorrect version
private List<String> sfyList= new ArrayList<String>(); //correct version
    public void setSfyList(List<String> sfyList) {
        this.sfyList = sfyList;
    }

    public List<String> getSfyList() {
        return sfyList;
    }

> Values stored in a Set a object is not displayed using <s:iterator>
> -------------------------------------------------------------------
>
>                 Key: WW-4666
>                 URL: https://issues.apache.org/jira/browse/WW-4666
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Other
>    Affects Versions: 2.3.29
>         Environment: Windows operating system, Oracle Jdeveloper IDE, WebLogic, struts, jsp, Jquery
>            Reporter: sharmila
>            Priority: Critical
>   Original Estimate: 0h
>  Remaining Estimate: 0h
>
> This block used to display values when I had Struts2.3.16.3 version. 
> After upgrading I am not able to display values. Please help me out. If I need to make any changes. 
> <s:iterator value="sFY">
>        <th><s:property /></th>
>  </s:iterator>



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)