|
|
@ -56,6 +56,9 @@ public class FormMobileAttrAction extends JTemplateAction<JForm> { |
|
|
|
|
|
|
|
|
|
|
|
final FormMobileAttrPane mobileAttrPane = new FormMobileAttrPane(); |
|
|
|
final FormMobileAttrPane mobileAttrPane = new FormMobileAttrPane(); |
|
|
|
mobileAttrPane.populateBean(mobileAttr); |
|
|
|
mobileAttrPane.populateBean(mobileAttr); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
final boolean oldMobileOnly = mobileAttr.isMobileOnly(); |
|
|
|
|
|
|
|
final boolean oldAdaptive = mobileAttr.isAdaptivePropertyAutoMatch(); |
|
|
|
BasicDialog dialog = mobileAttrPane.showWindow(DesignerContext.getDesignerFrame(), new DialogActionAdapter() { |
|
|
|
BasicDialog dialog = mobileAttrPane.showWindow(DesignerContext.getDesignerFrame(), new DialogActionAdapter() { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void doOk() { |
|
|
|
public void doOk() { |
|
|
@ -75,13 +78,16 @@ public class FormMobileAttrAction extends JTemplateAction<JForm> { |
|
|
|
recordFunction(); |
|
|
|
recordFunction(); |
|
|
|
// 设置移动端属性并刷新界面
|
|
|
|
// 设置移动端属性并刷新界面
|
|
|
|
formTpl.setFormMobileAttr(formMobileAttr); // 会调整 body 的自适应布局,放到最后
|
|
|
|
formTpl.setFormMobileAttr(formMobileAttr); // 会调整 body 的自适应布局,放到最后
|
|
|
|
((FormArea)jf.getFormDesign().getParent()).onMobileAttrModified(); |
|
|
|
boolean changeSize = (!oldMobileOnly && formMobileAttr.isMobileOnly()) || (oldMobileOnly && !formMobileAttr.isMobileOnly()); |
|
|
|
|
|
|
|
if (changeSize) { |
|
|
|
|
|
|
|
((FormArea)jf.getFormDesign().getParent()).onMobileAttrModified(); |
|
|
|
|
|
|
|
} |
|
|
|
jf.getFormDesign().getSelectionModel().setSelectedCreator(jf.getFormDesign().getRootComponent()); |
|
|
|
jf.getFormDesign().getSelectionModel().setSelectedCreator(jf.getFormDesign().getRootComponent()); |
|
|
|
//当自适应属性自动匹配处于勾选状态 进行切换
|
|
|
|
//改变布局为自适应布局,只在移动端属性设置保存后改变一次
|
|
|
|
if (formMobileAttr.isMobileOnly() && formMobileAttr.isAdaptivePropertyAutoMatch()) { |
|
|
|
boolean changeLayout = !oldAdaptive && formMobileAttr.isAdaptivePropertyAutoMatch(); |
|
|
|
|
|
|
|
if (changeLayout) { |
|
|
|
doChangeBodyLayout(); |
|
|
|
doChangeBodyLayout(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
WidgetPropertyPane.getInstance().refreshDockingView(); |
|
|
|
WidgetPropertyPane.getInstance().refreshDockingView(); |
|
|
|
jf.fireTargetModified(); |
|
|
|
jf.fireTargetModified(); |
|
|
|
} |
|
|
|
} |
|
|
|