Issue 4: ColumnImpl.getTitle() omits custom title names
Status:  Fixed
Owner: ----
Closed:  Feb 2007
Reported by rain...@gmail.com, Feb 14, 2007
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
Thank you! I included this as part of the beta5 release.
Status: Fixed