listBox = listBoxP.getValue(getTargetObject());
model = new BindingListModel();
listBox.setModel(model);
ListHeader header = new ListHeader();
for (ColumnBinding columnBinding : ListBoxBinding.this.getColumnBindings()) {
header.add(new ListColumn(columnBinding.getColumnName()));
}
listBox.setHeader(header);
listBox.setCellRenderer(new CellRenderer<E>() {
public void renderCell(ListBox<E> listBox, int row, int column,