protected void doBtnEditSpicActionPerformed(final ActionEvent e) {
CustomerThoubSpicTableModel model = (CustomerThoubSpicTableModel) thoubsTable
.getModel();
if (thoubsTable.getSelectedRow() > -1) {
DBObject dbObject = model.getRow(thoubsTable.getSelectedRow());
ThoubSpicPanel spicPanel = new ThoubSpicPanel();
spicPanel.setDBObject(dbObject);
ViewUtil.showDialog(spicPanel);
}
}