try {
int row = tabResolutionList.getSelectedRowSorted();
if (row > -1) {
CommitteeResolutionData data = comResList.get(row);
CommitteeResolutionData comResData = (CommitteeResolutionData) data.clone();
ComResDlg dlg = new ComResDlg(MainWindow.mainWindow, comResData, getAuditManager());
dlg.setVisible(true);
if (dlg.getDlgResult() == ModalDialog.DLG_OK) {
data.setCollaborator(comResData.getCollaborator());
data.setDescription(comResData.getDescription());
data.setMkb(comResData.getMkb());
data.setRendered(comResData.isRendered());
data.setType(comResData.getType());