IDEMPIERE-3518 Improvement For Mobile Compatibility. Process Dialog: fix notification type field and range field.
This commit is contained in:
parent
b98154670d
commit
09bdb59024
|
@ -375,7 +375,8 @@ public abstract class AbstractProcessDialog extends Window implements IProcessUI
|
|||
|
||||
row.appendChild(notificationTypeField.getComponent());
|
||||
runAsJobField.setChecked(MSysConfig.getBooleanValue(MSysConfig.BACKGROUND_JOB_BY_DEFAULT, false));
|
||||
notificationTypeField.getComponent().getParent().setVisible(runAsJobField.isChecked());
|
||||
notificationTypeField.getComponent().getParent().setVisible(runAsJobField.isChecked());
|
||||
notificationTypeField.fillHorizontal();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -328,7 +328,9 @@ public class ProcessParameterPanel extends Panel implements
|
|||
//
|
||||
if (voF.isRange) {
|
||||
Hbox box = new Hbox();
|
||||
ZKUpdateUtil.setHflex(box, "1");
|
||||
box.appendChild(editor.getComponent());
|
||||
editor.fillHorizontal();
|
||||
//
|
||||
GridFieldVO voF2 = GridFieldVO.createParameter(voF);
|
||||
GridField mField2 = new GridField(voF2);
|
||||
|
|
|
@ -69,6 +69,16 @@ when detect side effect, fix to only apply for parameter window*/
|
|||
.input-paramenter-layout{
|
||||
width: 70%;
|
||||
}
|
||||
@media screen and (max-width: 700px) {
|
||||
.input-paramenter-layout{
|
||||
width: 90%;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 500px) {
|
||||
.input-paramenter-layout{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.popup-dialog .input-paramenter-layout{
|
||||
width: 90%;
|
||||
|
|
Loading…
Reference in New Issue