My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 4: ColumnImpl.getTitle() omits custom title names
  Back to list
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

Powered by Google Project Hosting