/** Creates new form DialogSelectFunctions */
public DialogSelectFunctions(java.awt.Frame parent, ArrayList<DirectoryCollaboratorFunctionsItem> list) {
super(parent, "Выбор исполняемых обязанностей", null);
initComponents();
items = list;
tblFunctions.setModel(new TableModelFunctions(list));
tblFunctions.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
tblFunctions.getSelectionModel().addListSelectionListener(new ListSelectionListener() {
@Override
public void valueChanged(ListSelectionEvent e) {