public void onRowEditorExit(RowEditorExitEvent event) {
memberValuesGrid.validateRow(event.getRowNum());
if (memberValuesGrid.hasErrors()) {
okButton.disable();
} else {
okButton.enable();
}
}
});
// if the data can be changed, add some additional widgets; if not, make the value grid read only