You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "James Y.J. (JIRA)" <ji...@apache.org> on 2008/04/07 14:56:59 UTC

[jira] Created: (WW-2579) tag optiontransferselect's option is not selectable when the value of the option is 10, 20, or 30, so on

tag optiontransferselect's option is not selectable when  the value of the option is 10, 20, or 30, so on
---------------------------------------------------------------------------------------------------------

                 Key: WW-2579
                 URL: https://issues.apache.org/struts/browse/WW-2579
             Project: Struts 2
          Issue Type: Bug
          Components: Plugin - Tags
    Affects Versions: 2.0.9
            Reporter: James Y.J.


Hi, 

I cannot select the options of the left side to right side, when the value of the option is like 10, 20, 30, and so on. 
When I replaced the values with other integers, it works.

My optiontransferselect tag looks like this:

		 <s:optiontransferselect
			     leftTitle="Available"
			     id="availableOperations"
			     name="availableOperations"
			     list="availableOperations"
			     listKey="id"
			     listValue="name"
			     multiple="true"
			     headerKey="0"
			     headerValue="--- Please Select ---"
			     emptyOption="false"
			     cssStyle="width:240px"
			     rightTitle="Allowed"
			     doubleId="allowedOperations"
			     doubleName="allowedOperations"
			     doubleList="allowedOperations"
			     doubleListKey="id"
			     doubleListValue="name"
			     doubleHeaderKey="0"
			     doubleHeaderValue="--- Please Select ---"
			     doubleEmptyOption="false"
			     doubleMultiple="true"
			     doubleCssStyle="width:240px"
			     allowUpDownOnLeft="false"
			     allowUpDownOnRight="false"
			     buttonCssClass="button"
			     buttonCssStyle="width:60px;"
 			/>

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


[jira] Updated: (WW-2579) tag optiontransferselect's option is not selectable when the value of the option is 10, 20, or 30, so on

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

Don Brown updated WW-2579:
--------------------------

    Fix Version/s: 2.1.3

> tag optiontransferselect's option is not selectable when  the value of the option is 10, 20, or 30, so on
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: WW-2579
>                 URL: https://issues.apache.org/struts/browse/WW-2579
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Plugin - Tags
>    Affects Versions: 2.0.9
>            Reporter: James Y.J.
>             Fix For: 2.1.3
>
>
> Hi, 
> I cannot select the options of the left side to right side, when the value of the option is like 10, 20, 30, and so on. 
> When I replaced the values with other integers, it works.
> My optiontransferselect tag looks like this:
> 		 <s:optiontransferselect
> 			     leftTitle="Available"
> 			     id="availableOperations"
> 			     name="availableOperations"
> 			     list="availableOperations"
> 			     listKey="id"
> 			     listValue="name"
> 			     multiple="true"
> 			     headerKey="0"
> 			     headerValue="--- Please Select ---"
> 			     emptyOption="false"
> 			     cssStyle="width:240px"
> 			     rightTitle="Allowed"
> 			     doubleId="allowedOperations"
> 			     doubleName="allowedOperations"
> 			     doubleList="allowedOperations"
> 			     doubleListKey="id"
> 			     doubleListValue="name"
> 			     doubleHeaderKey="0"
> 			     doubleHeaderValue="--- Please Select ---"
> 			     doubleEmptyOption="false"
> 			     doubleMultiple="true"
> 			     doubleCssStyle="width:240px"
> 			     allowUpDownOnLeft="false"
> 			     allowUpDownOnRight="false"
> 			     buttonCssClass="button"
> 			     buttonCssStyle="width:60px;"
>  			/>

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


[jira] Commented: (WW-2579) tag optiontransferselect's option is not selectable when the value of the option is 10, 20, or 30, so on

Posted by "James Holmes (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/WW-2579?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=44215#action_44215 ] 

James Holmes commented on WW-2579:
----------------------------------

Hmm, I just tried using the following tag in my application and it worked fine.

<s:optiontransferselect
     label="Numeric Test"
     name="leftSideValues"
     list="{1,2,10,20,30}"
     doubleName="rightSideValues"
     doubleList="{}"
 />

Can you provide any more detail? Are you still having this issue?

I'm inclined to close this ticket as not a problem if we don't get any more information from you.

> tag optiontransferselect's option is not selectable when  the value of the option is 10, 20, or 30, so on
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: WW-2579
>                 URL: https://issues.apache.org/struts/browse/WW-2579
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Plugin - Tags
>    Affects Versions: 2.0.9
>            Reporter: James Y.J.
>             Fix For: 2.1.3
>
>
> Hi, 
> I cannot select the options of the left side to right side, when the value of the option is like 10, 20, 30, and so on. 
> When I replaced the values with other integers, it works.
> My optiontransferselect tag looks like this:
> 		 <s:optiontransferselect
> 			     leftTitle="Available"
> 			     id="availableOperations"
> 			     name="availableOperations"
> 			     list="availableOperations"
> 			     listKey="id"
> 			     listValue="name"
> 			     multiple="true"
> 			     headerKey="0"
> 			     headerValue="--- Please Select ---"
> 			     emptyOption="false"
> 			     cssStyle="width:240px"
> 			     rightTitle="Allowed"
> 			     doubleId="allowedOperations"
> 			     doubleName="allowedOperations"
> 			     doubleList="allowedOperations"
> 			     doubleListKey="id"
> 			     doubleListValue="name"
> 			     doubleHeaderKey="0"
> 			     doubleHeaderValue="--- Please Select ---"
> 			     doubleEmptyOption="false"
> 			     doubleMultiple="true"
> 			     doubleCssStyle="width:240px"
> 			     allowUpDownOnLeft="false"
> 			     allowUpDownOnRight="false"
> 			     buttonCssClass="button"
> 			     buttonCssStyle="width:60px;"
>  			/>

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


[jira] Resolved: (WW-2579) tag optiontransferselect's option is not selectable when the value of the option is 10, 20, or 30, so on

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

Don Brown resolved WW-2579.
---------------------------

    Resolution: Fixed
      Assignee: Don Brown

I believe there previously was an issue with type conversion around numbers ending in 0, but that has been fixed.

> tag optiontransferselect's option is not selectable when  the value of the option is 10, 20, or 30, so on
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: WW-2579
>                 URL: https://issues.apache.org/struts/browse/WW-2579
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Plugin - Tags
>    Affects Versions: 2.0.9
>            Reporter: James Y.J.
>            Assignee: Don Brown
>             Fix For: 2.1.3
>
>
> Hi, 
> I cannot select the options of the left side to right side, when the value of the option is like 10, 20, 30, and so on. 
> When I replaced the values with other integers, it works.
> My optiontransferselect tag looks like this:
> 		 <s:optiontransferselect
> 			     leftTitle="Available"
> 			     id="availableOperations"
> 			     name="availableOperations"
> 			     list="availableOperations"
> 			     listKey="id"
> 			     listValue="name"
> 			     multiple="true"
> 			     headerKey="0"
> 			     headerValue="--- Please Select ---"
> 			     emptyOption="false"
> 			     cssStyle="width:240px"
> 			     rightTitle="Allowed"
> 			     doubleId="allowedOperations"
> 			     doubleName="allowedOperations"
> 			     doubleList="allowedOperations"
> 			     doubleListKey="id"
> 			     doubleListValue="name"
> 			     doubleHeaderKey="0"
> 			     doubleHeaderValue="--- Please Select ---"
> 			     doubleEmptyOption="false"
> 			     doubleMultiple="true"
> 			     doubleCssStyle="width:240px"
> 			     allowUpDownOnLeft="false"
> 			     allowUpDownOnRight="false"
> 			     buttonCssClass="button"
> 			     buttonCssStyle="width:60px;"
>  			/>

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