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
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.