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 149: Blank versus Empty title
2 people starred this issue and may be notified of changes. Back to list
 
Project Member Reported by jeff.johnston.mn@gmail.com, Sep 26, 2008
If I use a white space, the property name is used.  In ColumnImpl:

   public String getTitle() {
       if (StringUtils.isBlank(title)) {
           return ViewUtils.camelCaseToWord(property);
       }

       return title;
   }

Maybe it should be StringUtils.isEmpty() instead?  

**********************************************************
 What I want to do then is make this an option and have isEmpty() be the
alternative. If I just outright change it then it may cause a lot of tables
to be incorrect now. I will add this as a preferences change.


Powered by Google Project Hosting