public void openRecordViewer(DatasetFilterInput filterInput) {
try {
DatasetRecord record = new DatasetRecord(filterInput);
RecordViewerDialog dialog = new RecordViewerDialog(record);
dialog.show();
} catch (SQLException e) {
MessageUtil.showErrorDialog("Could not load record details", e);
}
}