Closed
Description
Johnny Zhou opened SPR-7174 and commented
In version 3.0.2, the AbstractMultiCheckedElementTag.java line 291:
tagWriter.appendValue(label.toString());
This line cannot take the advantage of spring conversion service. We should change to the following:
PropertyEditor editor = (value != null ? this.getBindStatus().findEditor(value.getClass()) : null);
String displayString = getDisplayString(label, editor);
tagWriter.appendValue(displayString);
Affects: 3.0.2
Attachments:
- AbstractMultiCheckedElementTag.java (9.67 kB)