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 2016/11/13 10:45:58 UTC

[jira] [Updated] (WW-3441) support list ui tag bind data by listValue beside by listKey

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

Lukasz Lenart updated WW-3441:
------------------------------
    Fix Version/s:     (was: 2.5.x)
                   2.3.20

> support list ui tag bind data by listValue beside by listKey
> ------------------------------------------------------------
>
>                 Key: WW-3441
>                 URL: https://issues.apache.org/jira/browse/WW-3441
>             Project: Struts 2
>          Issue Type: Improvement
>            Reporter: zhouyanming
>             Fix For: 2.3.20
>
>         Attachments: patch.txt
>
>
> list ui tag include select checkboxlist radio.
> typically we use a enum values as list for those tag
> {code:java}
> package biz.model;
> import com.opensymphony.xwork2.ActionContext;
> import com.opensymphony.xwork2.util.LocalizedTextUtil;
> public enum EmployeeType {
> 	PACKER, DELIVERYMAN, WAREHOUSEMAN , SALESMAN, MANAGER, SERVANT;
> 	public String getName() {
> 		return name();
> 	}
> 	public String getDisplayName() {
> 		return LocalizedTextUtil.findText(getClass(), name(), ActionContext
> 				.getContext().getLocale(), name(), null);
> 	}
> 	public static EmployeeType parse(String name) {
> 		if (name != null)
> 			for (EmployeeType en : values())
> 				if (name.equals(en.name()) || name.equals(en.getDisplayName()))
> 					return en;
> 		return null;
> 	}
> 	@Override  //sometimes we need override toString() to display nicely
> 	public String toString() {
> 		return getDisplayName();
> 	}
> }
> {code}
> {code:html}
> <@s.select name="employee.type" list="@biz.model.EmployeeType@values()" listKey="name" listValue="displayName" headerKey="" headerValue=""/>
> {code}
> I override enum's toString use displayName replace name,so currently struts2 can't bind data as selected
> solution:
> tag.contains(parameters.nameValue, itemKey)  -->  tag.contains(parameters.nameValue, itemKey) || tag.contains(parameters.nameValue, itemValue)



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