Skip to content
Snippets Groups Projects
Commit 718696f3 authored by felmer's avatar felmer
Browse files

SE-198 fix bug concerning wrong column headers

SVN: 14563
parent 6ee454db
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ import ch.systemsx.cisd.openbis.generic.client.web.client.application.util.IMess
* <li>a code which has to be unique among all other headers,
* <li>a data type
* </ul>
* The header title is optional. If not specified the code will be the title. Usually it will be
* The header title is optional. If not specified <code>null</code> is returned. Usually it will be
* set in the client code by using a translation mechanism (like {@link IMessageProvider}).
*
* @author Franz-Josef Elmer
......@@ -72,7 +72,7 @@ public class GenericTableColumnHeader implements Serializable, IsSerializable
public String getTitle()
{
return title == null ? code : title;
return title;
}
public void setTitle(String title)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment