//server id at 2
if (jTable4.getSelectedRow() < 0) {
JOptionPane.showMessageDialog(this, "Please select server to edit label", "Error", JOptionPane.ERROR_MESSAGE);
return;
}
new OtherTabServerEditDialog(this, true, (String) jTable4.getModel().getValueAt(jTable4.getSelectedRow(), 0), (String) jTable4.getModel().getValueAt(jTable4.getSelectedRow(), 2), (String) jTable4.getModel().getValueAt(jTable4.getSelectedRow(), 1)).setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}//GEN-LAST:event_jButton19ActionPerformed