My class Person has
- Date date
- PersonType type (= tiger-enum)
When I show a glazedlists of persons, it formats my date wrong and doesn't use my i18n tiger-enum binding, instead it shows something like:
2007-01-01 | YOUNG
2007-01-01 | OLD
but it should be:
01/01/2007 | Jong
01/01/2007 | Oud
Is there any way to allow auto-configure the renderers of the table based on my properties?Code:glazedTableModel = new GlazedTableModel(getFinalList(), getMessageSource(), new String[]{"date", "type"}, getId()) { protected boolean isEditable(Object row, int column) { return false; } }; table = getComponentFactory().createTable(glazedTableModel);


Reply With Quote