// check first, if the tabs are created
if (getArticleDetailCtrl().getBinder() == null) {
return;
}
final Article anArticle = getSelectedArticle();
if (anArticle != null) {
// Show a confirm box
final String msg = Labels.getLabel("message.Question.Are_you_sure_to_delete_this_record") + "\n\n --> " + anArticle.getArtKurzbezeichnung();
final String title = Labels.getLabel("message.Deleting.Record");
MultiLineMessageBox.doSetTemplate();
if (MultiLineMessageBox.show(msg, title, Messagebox.YES | Messagebox.NO, Messagebox.QUESTION, true, new EventListener() {
@Override