You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Semih ARAL (JIRA)" <ji...@apache.org> on 2007/02/13 23:34:17 UTC

[jira] Created: (WW-1743) doubleselect has wrong doubleCssClass

doubleselect has wrong doubleCssClass
-------------------------------------

                 Key: WW-1743
                 URL: https://issues.apache.org/struts/browse/WW-1743
             Project: Struts 2
          Issue Type: Bug
          Components: Views
         Environment: Windows Xp, JDK 1.5
            Reporter: Semih ARAL
            Priority: Minor


doubleCssClass is wrong on doubleselect tag.
it gets cssClass value.

solution: Modify
<#if parameters.cssClass?exists>
 class="${parameters.cssClass?html}"<#rt/>
</#if>
<#if parameters.cssStyle?exists>
 style="${parameters.cssStyle?html}"<#rt/>
</#if>

at struts2-core-2.0.1.jar : /template/simple/doubleselect.ftl

as

<#if parameters.doubleCssClass?exists>
 class="${parameters.doubleCssClass?html}"<#rt/>
</#if>
<#if parameters.doubleCssStyle?exists>
 style="${parameters.doubleCssStyle?html}"<#rt/>
</#if>


but this not sufficient. I guess that they are not populated either
so in org.apache.struts2.views.jsp.ui.DoubleSelectTag at populateParams()

        doubleSelect.setCssClass(cssClass);
        doubleSelect.setCssStyle(cssStyle);

must be added. Actually I didn't applied it!!! This solution may be deceiving.

I think implementation of many detailed attributes begining with double are either missing or malfunctioning in doubleselect tag.


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


[jira] Updated: (WW-1743) doubleselect has wrong doubleCssClass

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

Ted Husted updated WW-1743:
---------------------------

    Fix Version/s: 2.0.6

> doubleselect has wrong doubleCssClass
> -------------------------------------
>
>                 Key: WW-1743
>                 URL: https://issues.apache.org/struts/browse/WW-1743
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Views
>         Environment: Windows Xp, JDK 1.5
>            Reporter: Semih ARAL
>            Priority: Minor
>             Fix For: 2.0.6
>
>
> doubleCssClass is wrong on doubleselect tag.
> it gets cssClass value.
> solution: Modify
> <#if parameters.cssClass?exists>
>  class="${parameters.cssClass?html}"<#rt/>
> </#if>
> <#if parameters.cssStyle?exists>
>  style="${parameters.cssStyle?html}"<#rt/>
> </#if>
> at struts2-core-2.0.1.jar : /template/simple/doubleselect.ftl
> as
> <#if parameters.doubleCssClass?exists>
>  class="${parameters.doubleCssClass?html}"<#rt/>
> </#if>
> <#if parameters.doubleCssStyle?exists>
>  style="${parameters.doubleCssStyle?html}"<#rt/>
> </#if>
> but this not sufficient. I guess that they are not populated either
> so in org.apache.struts2.views.jsp.ui.DoubleSelectTag at populateParams()
>         doubleSelect.setCssClass(cssClass);
>         doubleSelect.setCssStyle(cssStyle);
> must be added. Actually I didn't applied it!!! This solution may be deceiving.
> I think implementation of many detailed attributes begining with double are either missing or malfunctioning in doubleselect tag.

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


[jira] Closed: (WW-1743) doubleselect has wrong doubleCssClass

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

Musachy Barroso closed WW-1743.
-------------------------------

       Resolution: Fixed
    Fix Version/s:     (was: 2.1.0)
                   2.0.8

IMO this fix won't affect existing applications because the 2 attributes (doubleCssClass and doubleCssStyle) were completely ignored before.

> doubleselect has wrong doubleCssClass
> -------------------------------------
>
>                 Key: WW-1743
>                 URL: https://issues.apache.org/struts/browse/WW-1743
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Views
>         Environment: Windows Xp, JDK 1.5
>            Reporter: Semih ARAL
>            Priority: Minor
>             Fix For: 2.0.8
>
>
> doubleCssClass is wrong on doubleselect tag.
> it gets cssClass value.
> solution: Modify
> <#if parameters.cssClass?exists>
>  class="${parameters.cssClass?html}"<#rt/>
> </#if>
> <#if parameters.cssStyle?exists>
>  style="${parameters.cssStyle?html}"<#rt/>
> </#if>
> at struts2-core-2.0.1.jar : /template/simple/doubleselect.ftl
> as
> <#if parameters.doubleCssClass?exists>
>  class="${parameters.doubleCssClass?html}"<#rt/>
> </#if>
> <#if parameters.doubleCssStyle?exists>
>  style="${parameters.doubleCssStyle?html}"<#rt/>
> </#if>
> but this not sufficient. I guess that they are not populated either
> so in org.apache.struts2.views.jsp.ui.DoubleSelectTag at populateParams()
>         doubleSelect.setCssClass(cssClass);
>         doubleSelect.setCssStyle(cssStyle);
> must be added. Actually I didn't applied it!!! This solution may be deceiving.
> I think implementation of many detailed attributes begining with double are either missing or malfunctioning in doubleselect tag.

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


[jira] Closed: (WW-1743) doubleselect has wrong doubleCssClass

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

Musachy Barroso closed WW-1743.
-------------------------------

    Resolution: Duplicate

> doubleselect has wrong doubleCssClass
> -------------------------------------
>
>                 Key: WW-1743
>                 URL: https://issues.apache.org/struts/browse/WW-1743
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Views
>         Environment: Windows Xp, JDK 1.5
>            Reporter: Semih ARAL
>            Priority: Minor
>             Fix For: 2.0.8
>
>
> doubleCssClass is wrong on doubleselect tag.
> it gets cssClass value.
> solution: Modify
> <#if parameters.cssClass?exists>
>  class="${parameters.cssClass?html}"<#rt/>
> </#if>
> <#if parameters.cssStyle?exists>
>  style="${parameters.cssStyle?html}"<#rt/>
> </#if>
> at struts2-core-2.0.1.jar : /template/simple/doubleselect.ftl
> as
> <#if parameters.doubleCssClass?exists>
>  class="${parameters.doubleCssClass?html}"<#rt/>
> </#if>
> <#if parameters.doubleCssStyle?exists>
>  style="${parameters.doubleCssStyle?html}"<#rt/>
> </#if>
> but this not sufficient. I guess that they are not populated either
> so in org.apache.struts2.views.jsp.ui.DoubleSelectTag at populateParams()
>         doubleSelect.setCssClass(cssClass);
>         doubleSelect.setCssStyle(cssStyle);
> must be added. Actually I didn't applied it!!! This solution may be deceiving.
> I think implementation of many detailed attributes begining with double are either missing or malfunctioning in doubleselect tag.

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


[jira] Updated: (WW-1743) doubleselect has wrong doubleCssClass

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

Don Brown updated WW-1743:
--------------------------

    Fix Version/s:     (was: 2.0.8)
                   2.1.0

Agreed, but this type of change that could affect existing applications should be done in 2.1.x

> doubleselect has wrong doubleCssClass
> -------------------------------------
>
>                 Key: WW-1743
>                 URL: https://issues.apache.org/struts/browse/WW-1743
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Views
>         Environment: Windows Xp, JDK 1.5
>            Reporter: Semih ARAL
>            Priority: Minor
>             Fix For: 2.1.0
>
>
> doubleCssClass is wrong on doubleselect tag.
> it gets cssClass value.
> solution: Modify
> <#if parameters.cssClass?exists>
>  class="${parameters.cssClass?html}"<#rt/>
> </#if>
> <#if parameters.cssStyle?exists>
>  style="${parameters.cssStyle?html}"<#rt/>
> </#if>
> at struts2-core-2.0.1.jar : /template/simple/doubleselect.ftl
> as
> <#if parameters.doubleCssClass?exists>
>  class="${parameters.doubleCssClass?html}"<#rt/>
> </#if>
> <#if parameters.doubleCssStyle?exists>
>  style="${parameters.doubleCssStyle?html}"<#rt/>
> </#if>
> but this not sufficient. I guess that they are not populated either
> so in org.apache.struts2.views.jsp.ui.DoubleSelectTag at populateParams()
>         doubleSelect.setCssClass(cssClass);
>         doubleSelect.setCssStyle(cssStyle);
> must be added. Actually I didn't applied it!!! This solution may be deceiving.
> I think implementation of many detailed attributes begining with double are either missing or malfunctioning in doubleselect tag.

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


[jira] Reopened: (WW-1743) doubleselect has wrong doubleCssClass

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

Musachy Barroso reopened WW-1743:
---------------------------------


> doubleselect has wrong doubleCssClass
> -------------------------------------
>
>                 Key: WW-1743
>                 URL: https://issues.apache.org/struts/browse/WW-1743
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Views
>         Environment: Windows Xp, JDK 1.5
>            Reporter: Semih ARAL
>            Priority: Minor
>             Fix For: 2.0.8
>
>
> doubleCssClass is wrong on doubleselect tag.
> it gets cssClass value.
> solution: Modify
> <#if parameters.cssClass?exists>
>  class="${parameters.cssClass?html}"<#rt/>
> </#if>
> <#if parameters.cssStyle?exists>
>  style="${parameters.cssStyle?html}"<#rt/>
> </#if>
> at struts2-core-2.0.1.jar : /template/simple/doubleselect.ftl
> as
> <#if parameters.doubleCssClass?exists>
>  class="${parameters.doubleCssClass?html}"<#rt/>
> </#if>
> <#if parameters.doubleCssStyle?exists>
>  style="${parameters.doubleCssStyle?html}"<#rt/>
> </#if>
> but this not sufficient. I guess that they are not populated either
> so in org.apache.struts2.views.jsp.ui.DoubleSelectTag at populateParams()
>         doubleSelect.setCssClass(cssClass);
>         doubleSelect.setCssStyle(cssStyle);
> must be added. Actually I didn't applied it!!! This solution may be deceiving.
> I think implementation of many detailed attributes begining with double are either missing or malfunctioning in doubleselect tag.

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