public void onItemSelectionChanged(IModel item, boolean newValue) {
super.onItemSelectionChanged(item, newValue);
// refresh the selection label when an item gets selected/deselected.
AjaxRequestTarget target = AjaxRequestTarget.get();
target.addComponent(selectionLabel);
}
};
grid.setAllowSelectMultiple(true);
grid.setClickRowToSelect(true);