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

[jira] Resolved: (WW-2603) using datetimepicker inside a detail panel in a master-detail screen, this component don´t show de value

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

Musachy Barroso resolved WW-2603.
---------------------------------

    Resolution: Not A Problem

> using datetimepicker inside a detail panel in a master-detail screen, this component don´t show de value
> --------------------------------------------------------------------------------------------------------
>
>                 Key: WW-2603
>                 URL: https://issues.apache.org/struts/browse/WW-2603
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Plugin - Dojo Tags
>    Affects Versions: 2.1.1
>         Environment: struts 2.1.1, tomcat 6
>            Reporter: Décio Heinzelmann Luckow
>             Fix For: 2.1.3
>
>
> using datetimepicker inside a detail panel in a master-detail screen, this component don´t show de value when 'edit' an registry.
> In UIBean line: 635
>         if (this.name != null) {
>             name = findString(this.name);
>             addParameter("name", name);
>         }
> here 'this.name' is equal to cliente.titulos[%{#status.index}].vencimento
> when findString return the name is cliente.titulos[0].vencimento
> but 'this.name' is still cliente.titulos[%{#status.index}].vencimento
> a little after in DateTimePicker:262
> the classe gets this.name e try to get the value, but the name is
> cliente.titulos[%{#status.index}].vencimento and the method don´t find the value
> here should be cliente.titulos[0].vencimento
> I think that in UIBean:635 should be:
>         if (this.name != null) {
>             this.name = findString(this.name);
>             addParameter("name", this.name);
>         }
> 'this.value' instead of 'value'

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