I'm using a CompoundPropertyModel (via PropertyListView) to print properties of an object (User).
One of the properties of the User object is a boolean. I would like the boolean to be rendered using a custom conversion (false -> "disabled", true -> "enabled").
How can I achieve this without adding new method to the User object?
add(new PropertyListView<User>("users", new LoadableUsersModel()) {
@Override
protected void populateItem(ListItem<User> item) {
item.add(new Label("firstname"));
item.add(new Label("surname"));
item.add(new Label("username"));
item.add(new Label("email"));
item.add(new Label("active"));
}
});
