| Issue 4: | ColumnImpl.getTitle() omits custom title names | |
| Back to list |
Should be changed from:
public String getTitle() {
if (StringUtils.isBlank(title)) {
return ViewUtils.camelCaseToWord(property);
} else {
}
return null;
}
to:
public String getTitle() {
if (StringUtils.isBlank(title)) {
return ViewUtils.camelCaseToWord(property);
}
return title;
}
Feb 14, 2007
#1
extremec...@gmail.com
Status:
Fixed
|