|
|
|
@ -3,6 +3,9 @@ package com.fr.design.mainframe.widget.ui;
|
|
|
|
|
import com.fr.design.gui.icheckbox.UICheckBox; |
|
|
|
|
import com.fr.form.ui.Widget; |
|
|
|
|
|
|
|
|
|
import static com.fine.swing.ui.layout.Layouts.cell; |
|
|
|
|
import static com.fine.swing.ui.layout.Layouts.row; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Created by kerry on 2017/9/30. |
|
|
|
@ -17,12 +20,12 @@ public class BasicSetVisiblePropertyPane extends FormBasicPropertyPane {
|
|
|
|
|
protected void initComponent() { |
|
|
|
|
UICheckBox otherOtherConfig = createOtherConfig(); |
|
|
|
|
if(otherOtherConfig != null){ |
|
|
|
|
corePane.add(otherOtherConfig); |
|
|
|
|
corePane.add(row(cell(otherOtherConfig)).getComponent()); |
|
|
|
|
} |
|
|
|
|
visibleCheckBox = new UICheckBox(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Widget_Visible"), true); |
|
|
|
|
visibleCheckBox.setGlobalName(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Basic")); |
|
|
|
|
|
|
|
|
|
corePane.add(visibleCheckBox); |
|
|
|
|
corePane.add(row(cell(visibleCheckBox)).getComponent()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public UICheckBox createOtherConfig(){ |
|
|
|
|