HorizontalPanel panel = new HorizontalPanel();
Button applyButton = new Button(i18n.ConfirmButton());
applyButton.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
bus.fireEventFromSource(new ItemValidationsEditedEvent(validationTablePanel.getCurrentValidations()), ValidationsEffectView.this);
if (parentPopup != null) {
parentPopup.hide();
}
}
});