columns.add(new CellItemListenerPropertyColumn<BuchungssatzDO>(new Model<String>(getString("fibu.kost1")), getSortable(
"kost1.shortDisplayName", sortable), "kost1.shortDisplayName", cellItemListener) {
@Override
public String getTooltip(final BuchungssatzDO satz)
{
final Kost1DO kost1 = satz != null ? satz.getKost1() : null;
if (kost1 == null) {
return null;
} else {
return KostFormatter.formatToolTip(kost1);
}