1004150 Process modal dialog: no scrollbar when content overflow.
This commit is contained in:
parent
97e5b51a4c
commit
d9ae654c16
|
@ -169,6 +169,7 @@ public class ProcessModalDialog extends Window implements EventListener<Event>,
|
||||||
dialogContent.setHflex("1");
|
dialogContent.setHflex("1");
|
||||||
dialogContent.setVflex("1");
|
dialogContent.setVflex("1");
|
||||||
dialogContent.setSclass("dialog-content");
|
dialogContent.setSclass("dialog-content");
|
||||||
|
dialogContent.setStyle("overflow-y: auto;");
|
||||||
dialogBody.appendChild(dialogContent);
|
dialogBody.appendChild(dialogContent);
|
||||||
Div div = new Div();
|
Div div = new Div();
|
||||||
div.setId("message");
|
div.setId("message");
|
||||||
|
|
|
@ -731,6 +731,9 @@ public class ProcessParameterPanel extends Panel implements
|
||||||
editor.setMandatory(mField.isMandatory(true));
|
editor.setMandatory(mField.isMandatory(true));
|
||||||
editor.updateLabelStyle();
|
editor.updateLabelStyle();
|
||||||
}
|
}
|
||||||
|
if (getParent() != null) {
|
||||||
|
getParent().invalidate();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue