Skip to content
Snippets Groups Projects
Commit ceca8b28 authored by izabel's avatar izabel
Browse files

fix: disappearing info message after mandatory property assignment

SVN: 15265
parent 38e71856
No related branches found
No related tags found
No related merge requests found
...@@ -254,6 +254,7 @@ public final class PropertyTypeAssignmentForm extends LayoutContainer implements ...@@ -254,6 +254,7 @@ public final class PropertyTypeAssignmentForm extends LayoutContainer implements
{ {
mandatoryCheckbox = new CheckBoxField(viewContext.getMessage(Dict.MANDATORY), false); mandatoryCheckbox = new CheckBoxField(viewContext.getMessage(Dict.MANDATORY), false);
mandatoryCheckbox.setId(createChildId(MANDATORY_CHECKBOX_ID_SUFFIX)); mandatoryCheckbox.setId(createChildId(MANDATORY_CHECKBOX_ID_SUFFIX));
mandatoryCheckbox.setFireChangeEventOnSetValue(false);
mandatoryCheckbox.setValue(false); mandatoryCheckbox.setValue(false);
mandatoryCheckbox.addListener(Events.Change, new InfoBoxResetListener(infoBox)); mandatoryCheckbox.addListener(Events.Change, new InfoBoxResetListener(infoBox));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment